feat: 更新默认LLM配置为codex_oauth并升级模型版本
将默认的LLM提供商从openai更改为codex_oauth,同时升级deep_think_llm和quick_think_llm的模型版本,并更新backend_url以匹配新的提供商
This commit is contained in:
parent
22d9d8a64a
commit
b89dabca89
|
|
@ -8,10 +8,10 @@ DEFAULT_CONFIG = {
|
||||||
"dataflows/data_cache",
|
"dataflows/data_cache",
|
||||||
),
|
),
|
||||||
# LLM settings
|
# LLM settings
|
||||||
"llm_provider": "openai",
|
"llm_provider": "codex_oauth",
|
||||||
"deep_think_llm": "gpt-5.2",
|
"deep_think_llm": "gpt-5.4",
|
||||||
"quick_think_llm": "gpt-5-mini",
|
"quick_think_llm": "gpt-5.2",
|
||||||
"backend_url": "https://api.openai.com/v1",
|
"backend_url": "https://chatgpt.com/backend-api",
|
||||||
# Provider-specific thinking configuration
|
# Provider-specific thinking configuration
|
||||||
"google_thinking_level": None, # "high", "minimal", etc.
|
"google_thinking_level": None, # "high", "minimal", etc.
|
||||||
"openai_reasoning_effort": None, # "medium", "high", "low"
|
"openai_reasoning_effort": None, # "medium", "high", "low"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue