The big question - which one of these new agents can consume local models to a reasonable degree? I would like to ditch the dependency on external APIs - willing to trade some performance in lieu.
Crush has an open issue (2 weeks) to add Ollama support - it's in progress.
```
{
"providers": {
"ollama": {
"type": "openai",
"base_url": "http://localhost:11434/v1",
"api_key": "ollama",
"models": [
{
"id": "llama3.2:3b",
"model": "Llama 3.2 3B",
"context_window": 131072,
"default_max_tokens": 4096,
"cost_per_1m_in": 0,
"cost_per_1m_out": 0
}
]
}
}
}```