feat(llm-deepseek): support low reasoning effort

This commit is contained in:
Yichen Jiang
2026-08-14 11:47:59 +08:00
parent f322d5cb0d
commit 226600147e
21 changed files with 54 additions and 46 deletions

View File

@@ -2,5 +2,5 @@
# side as of the last confirmed-consistent state. Both languages carry equal authority;
# after editing either side, bring the other along and re-record with:
# pnpm run verify-translation-pairing --write docs/config-catalog.md
config-catalog.md: 20919b3fdc5ab26255465949d72bdce8d356a529
config-catalog.zh.md: 8dfb49df5e3f5906af859a4de83ebc44f315a0bd
config-catalog.md: 82f6d26c79d32c6952f3bc11c96fa1c2ddceecdc
config-catalog.zh.md: 958d3115447db37de248bbf30b0744308ff8dbb8

View File

@@ -859,7 +859,7 @@ export interface Config {
/** Deployment thinking policy; `disabled` limits every conversation request to `off`. */
thinking?: 'enabled' | 'disabled'
/** Default thinking effort (default `high`); `off` disables thinking per request. */
reasoningEffort?: 'off' | 'high' | 'max'
reasoningEffort?: 'off' | 'low' | 'high' | 'max'
/** Default per-request output cap (default 256,000); a model's own cap and explicit request values win. */
maxTokens?: number
/** Positive context capacity used when the selected model has no exact value (default 1,000,000). */

View File

@@ -861,7 +861,7 @@ export interface Config {
/** Deployment thinking policy; `disabled` limits every conversation request to `off`. */
thinking?: 'enabled' | 'disabled'
/** Default thinking effort (default `high`); `off` disables thinking per request. */
reasoningEffort?: 'off' | 'high' | 'max'
reasoningEffort?: 'off' | 'low' | 'high' | 'max'
/** Default per-request output cap (default 256,000); a model's own cap and explicit request values win. */
maxTokens?: number
/** Positive context capacity used when the selected model has no exact value (default 1,000,000). */