fix(pitch-deck): qwen3.5 thinking-mode deaktiviert, num_ctx 8192
All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 28s
CI / test-python-voice (push) Successful in 30s
CI / test-bqas (push) Successful in 29s
All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 28s
CI / test-python-voice (push) Successful in 30s
CI / test-bqas (push) Successful in 29s
Qwen3.5 denkt standardmaessig intern durch (think: true) — das ueberschreitet den 2-Minuten-Timeout des Investor Agents. think: false + num_ctx 8192 sorgt fuer schnelle direkte Antworten. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -180,9 +180,11 @@ export async function POST(request: NextRequest) {
|
|||||||
model: OLLAMA_MODEL,
|
model: OLLAMA_MODEL,
|
||||||
messages,
|
messages,
|
||||||
stream: true,
|
stream: true,
|
||||||
|
think: false,
|
||||||
options: {
|
options: {
|
||||||
temperature: 0.4,
|
temperature: 0.4,
|
||||||
num_predict: 4096,
|
num_predict: 4096,
|
||||||
|
num_ctx: 8192,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
signal: AbortSignal.timeout(120000),
|
signal: AbortSignal.timeout(120000),
|
||||||
|
|||||||
Reference in New Issue
Block a user