How to use Agent routing? #412
techwebsolucao
started this conversation in
General
Replies: 1 comment 1 reply
-
|
Agent routing is supported, but there are two common gotchas here:
Your example structure looks broadly correct: {
"agentModels": {
"deepseek-chat": {
"base_url": "https://api.deepseek.com/v1",
"api_key": "sk-your-key"
},
"gpt-4o": {
"base_url": "https://api.openai.com/v1",
"api_key": "sk-your-key"
}
},
"agentRouting": {
"Explore": "deepseek-chat",
"Plan": "gpt-4o",
"general-purpose": "gpt-4o",
"frontend-dev": "deepseek-chat",
"default": "gpt-4o"
}
}What I would check next:
Also, If you want, paste:
and we can narrow down why the routing is not being picked up. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, I'm trying to configure the suggestions in my .claude/settings.json file.
However, when I open OpenClaude, it doesn't appear.
Here's an example, but I don't know how to make it work.
Beta Was this translation helpful? Give feedback.
All reactions