-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.toml.example
More file actions
41 lines (34 loc) · 1007 Bytes
/
config.toml.example
File metadata and controls
41 lines (34 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[agents]
[agents.planner]
model = "gpt-4o-mini"
max_reasoning_times = 5
max_tokens = 8192
max_subtasks = 10
[agents.worker]
model = "gpt-4o-mini"
max_tokens = 8192
max_reasoning_times = 5
[agents.reporter]
model = "gpt-4o-mini"
max_tokens = 8192
# Support three standard MCP transport as worker tools: streamable_http、stdio or sse.
[mcp_servers]
# use stdio transport
[mcp_servers.tavily_stdio]
enabled = false
type = "stdio"
command = "npx"
args = ["-y", "mcp-remote", "https://mcp.tavily.com/mcp/?tavilyApiKey=your-tavily-api-key"]
include_tools = ["tavily_search"]
# use streamable_http transport
[mcp_servers.tavily_streamable_http]
enabled = true
type = "streamable_http"
url = "https://mcp.tavily.com/mcp/?tavilyApiKey=your-tavily-api-key"
include_tools = ["tavily_search"] # if empty, default all
# or sse transport (Deprecated - recommend using streamable_http instead)
[mcp_servers.sse_server_example]
enabled = false
type = "sse"
url = "sse_server_url"
include_tools = ["tavily_search"]