fix(migrate): add github_copilot to supportedProviders
Add github_copilot to the supportedProviders map to match the providers handled in MergeConfig. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
5cd1597674
commit
a1d694b8f1
1 changed files with 10 additions and 9 deletions
|
|
@ -12,15 +12,16 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var supportedProviders = map[string]bool{
|
var supportedProviders = map[string]bool{
|
||||||
"anthropic": true,
|
"anthropic": true,
|
||||||
"openai": true,
|
"openai": true,
|
||||||
"openrouter": true,
|
"openrouter": true,
|
||||||
"groq": true,
|
"groq": true,
|
||||||
"zhipu": true,
|
"zhipu": true,
|
||||||
"vllm": true,
|
"vllm": true,
|
||||||
"gemini": true,
|
"gemini": true,
|
||||||
"qwen": true,
|
"qwen": true,
|
||||||
"deepseek": true,
|
"deepseek": true,
|
||||||
|
"github_copilot": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
var supportedChannels = map[string]bool{
|
var supportedChannels = map[string]bool{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue