feat(examples): default agent configs to DeepSeek Pro Max Thinking

This commit is contained in:
Turtle
2026-07-22 10:55:18 +08:00
parent 7dbe99f008
commit 0e06d0691d
11 changed files with 77 additions and 11 deletions

View File

@@ -6,11 +6,16 @@
config:
maxTokensAsSuccess: !!js "process.env.DSH_MAX_TOKENS_AS_SUCCESS === undefined ? true : JSON.parse(process.env.DSH_MAX_TOKENS_AS_SUCCESS)"
# The DeepSeek adapter. Shipped default: full thinking at max effort on every
# request (wire-only defaults; they never enter the request header). The model
# arrives per session over JSON-RPC, so it is not pinned here.
- id: llm-deepseek
name: '@deepseek-ai/dsh-llm-deepseek'
config:
apiKey: !!js process.env.DEEPSEEK_API_KEY
baseURL: !!js process.env.DEEPSEEK_BASE_URL
thinking: enabled
reasoningEffort: max
- id: bash
name: '@deepseek-ai/dsh-bash-local'