forked from Nano-Collective/nanocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.config.example.json
More file actions
41 lines (41 loc) · 896 Bytes
/
Copy pathagents.config.example.json
File metadata and controls
41 lines (41 loc) · 896 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
41
{
"nanocoder": {
"providers": [
{
"name": "OpenRouter",
"baseUrl": "https://openrouter.ai/api/v1",
"apiKey": "your-openrouter-api-key-here",
"models": ["openai/gpt-4o-mini", "anthropic/claude-3-haiku"]
},
{
"name": "Local Ollama",
"baseUrl": "http://localhost:11434/v1",
"models": ["llama3.2", "qwen2.5-coder"]
},
{
"name": "OpenAI Compatible",
"baseUrl": "http://localhost:1234/v1",
"apiKey": "optional-api-key-if-needed",
"models": ["local-model-1", "local-model-2"]
}
],
"mcpServers": [
{
"name": "filesystem",
"command": "npx",
"args": [
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
},
{
"name": "github",
"command": "npx",
"args": ["@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "your-github-token"
}
}
]
}
}