50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"providers": {
|
|
"aliyun": {
|
|
"type": "openai",
|
|
"base_url": "https://example.invalid/v1",
|
|
"api_key": "test-only-not-a-real-key",
|
|
"extra_headers": {}
|
|
}
|
|
},
|
|
"models": {
|
|
"qwen-plus": {
|
|
"model_id": "qwen-plus",
|
|
"temperature": 0.0,
|
|
"max_tokens": 100,
|
|
"token_limit": 128000,
|
|
"input_type": ["text"]
|
|
}
|
|
},
|
|
"agents": {
|
|
"default": {
|
|
"provider": "aliyun",
|
|
"model": "qwen-plus",
|
|
"max_tool_iterations": 20
|
|
}
|
|
},
|
|
"agent_orchestration": {
|
|
"definitions_dir": "agents",
|
|
"max_tree_depth": 4,
|
|
"max_runs_per_tree": 16,
|
|
"max_concurrent_runs": 6,
|
|
"max_concurrent_runs_per_session": 4,
|
|
"max_concurrent_provider_steps": 8,
|
|
"max_concurrent_provider_steps_per_session": 4,
|
|
"max_concurrent_tool_steps": 16,
|
|
"max_concurrent_tool_steps_per_session": 8,
|
|
"max_pending_inbox_events_per_session": 128,
|
|
"inbox_event_ttl_hours": 168,
|
|
"max_inbox_delivery_attempts": 8,
|
|
"max_user_turn_burst_before_inbox": 4,
|
|
"max_inbox_wait_secs": 30
|
|
},
|
|
"gateway": {
|
|
"host": "127.0.0.1",
|
|
"port": 19877,
|
|
"require_pairing": true
|
|
},
|
|
"channels": {},
|
|
"workspace_dir": "/tmp/picobot-test-workspace"
|
|
}
|