fix(llm-semantic-chunker): increase default max output tokens from 6000 to 8000

This commit is contained in:
FFXN 2026-09-03 22:18:06 +08:00
parent 6c79f4baeb
commit cc8a89cdf7

View File

@ -60,7 +60,7 @@ const DEFAULT_MAX_WINDOW_CHARS = 4_800;
const DEFAULT_MAX_NODES = 20_000;
const DEFAULT_MAX_ENTITIES_PER_CHUNK = 100;
const DEFAULT_MAX_RELATIONS_PER_CHUNK = 100;
const DEFAULT_MAX_OUTPUT_TOKENS = 6_000;
const DEFAULT_MAX_OUTPUT_TOKENS = 8_000;
const DEFAULT_MAX_RESPONSE_CHARS = 1_000_000;
const DEFAULT_PROMPT_VERSION = "semantic-chunking-v6";
const SEMANTIC_CHUNKING_V2_PROMPT_VERSION = "semantic-chunking-v2";