feat(registry): add kiro channel support for model definitions

Add kiro as a new supported channel in GetStaticModelDefinitionsByChannel
function, enabling retrieval of Kiro model definitions alongside existing
providers like qwen, iflow, and github-copilot.
This commit is contained in:
yuechenglong.5
2026-02-03 20:55:10 +08:00
parent b9cdc2f54c
commit 0b889c6028

View File

@@ -19,6 +19,7 @@ import (
// - codex
// - qwen
// - iflow
// - kiro
// - github-copilot
// - antigravity (returns static overrides only)
func GetStaticModelDefinitionsByChannel(channel string) []*ModelInfo {
@@ -40,6 +41,8 @@ func GetStaticModelDefinitionsByChannel(channel string) []*ModelInfo {
return GetQwenModels()
case "iflow":
return GetIFlowModels()
case "kiro":
return GetKiroModels()
case "github-copilot":
return GetGitHubCopilotModels()
case "antigravity":