From 8f6740fcef8cce2310408d6d4926b20aa6c16e34 Mon Sep 17 00:00:00 2001 From: Woohyun Rho Date: Sun, 11 Jan 2026 03:01:50 +0900 Subject: [PATCH] fix(iflow): add missing applyExcludedModels call for iflow provider --- sdk/cliproxy/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/cliproxy/service.go b/sdk/cliproxy/service.go index 9c094c8c..a85b8149 100644 --- a/sdk/cliproxy/service.go +++ b/sdk/cliproxy/service.go @@ -769,6 +769,7 @@ func (s *Service) registerModelsForAuth(a *coreauth.Auth) { models = applyExcludedModels(models, excluded) case "iflow": models = registry.GetIFlowModels() + models = applyExcludedModels(models, excluded) case "github-copilot": models = registry.GetGitHubCopilotModels() models = applyExcludedModels(models, excluded)