思考模式默认为disable

This commit is contained in:
xunbu
2025-09-09 20:52:45 +08:00
parent 9fb0a49f3a
commit 9be7ff4279
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ class AgentConfig:
temperature: float = 0.7 temperature: float = 0.7
concurrent: int = 30 concurrent: int = 30
timeout: int = 1200 # 单位(秒)这个值是httpx.TimeOut中read的值,并非总的超时时间 timeout: int = 1200 # 单位(秒)这个值是httpx.TimeOut中read的值,并非总的超时时间
thinking: ThinkingMode = "default" thinking: ThinkingMode = "disable"
retry: int = 2 retry: int = 2

View File

@@ -1,5 +1,5 @@
default_params = { default_params = {
"thinking": "default", "thinking": "disable",
"chunk_size": 3000, "chunk_size": 3000,
"concurrent": 30, "concurrent": 30,
"temperature": 0.7, "temperature": 0.7,