PicoBot/config.json

34 lines
664 B
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,
"input_type": ["text"]
}
},
"agents": {
"default": {
"provider": "aliyun",
"model": "qwen-plus",
"max_tool_iterations": 20,
"token_limit": 128000
}
},
"gateway": {
"host": "127.0.0.1",
"port": 19876,
"require_pairing": true
},
"channels": {},
"workspace_dir": "/tmp/picobot-test-workspace"
}