AGI_Assistant / picoclaw.json
Dmitry Beresnev
Add and configure NemoClaw, IronClaw, and complete claw stack configs
974e338
raw
history blame contribute delete
864 Bytes
{
"agents": {
"defaults": {
"workspace": "/app/vault",
"model_name": "deepseek-chat",
"max_tokens": 8192,
"temperature": 0.7,
"max_tool_iterations": 20
}
},
"model_list": [
{
"model_name": "deepseek-chat",
"model": "openai/deepseek-chat",
"api_key": "${LLM_SPACE_API_KEY}",
"base_url": "https://researchengineering-agi.hf.space/v1",
"request_timeout": 120
}
],
"gateway": {
"host": "127.0.0.1",
"port": 18792
},
"tools": {
"web": {
"duckduckgo": {
"enabled": true,
"max_results": 5
},
"brave": {
"enabled": false,
"api_key": "YOUR_BRAVE_API_KEY",
"max_results": 5
},
"tavily": {
"enabled": false,
"api_key": "YOUR_TAVILY_API_KEY",
"max_results": 5
}
}
}
}