14 lines
331 B
TOML
14 lines
331 B
TOML
|
[llm]
|
||
|
model = "deepseek-chat"
|
||
|
base_url = "https://api.deepseek.com"
|
||
|
api_key = "sk-93c5bfcb920c4a8aa345791d429b8536"
|
||
|
max_tokens = 4096
|
||
|
provider = "openrouter"
|
||
|
|
||
|
[agent]
|
||
|
# 最大步骤数
|
||
|
max_steps = 30
|
||
|
# 最大连续工具调用次数
|
||
|
max_consecutive_tool_calls = 10
|
||
|
# 是否每次运行都清空历史
|
||
|
clear_history_each_run = false
|