From 0b889c6028d4a66c00b7b2cf66bd12ae63e14f8c Mon Sep 17 00:00:00 2001 From: "yuechenglong.5" Date: Tue, 3 Feb 2026 20:55:10 +0800 Subject: [PATCH] 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. --- internal/registry/model_definitions.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/registry/model_definitions.go b/internal/registry/model_definitions.go index 954ecc7f..c9af3d4f 100644 --- a/internal/registry/model_definitions.go +++ b/internal/registry/model_definitions.go @@ -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":