From a9b10ce5d7873505dcbe96394b9b2b750575c125 Mon Sep 17 00:00:00 2001 From: Sai Sankar Gochhayat Date: Fri, 20 Feb 2026 13:40:18 -0800 Subject: [PATCH] fix(providers): remove Close() not in LLMProvider interface and no call sites --- pkg/providers/github_copilot_provider.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkg/providers/github_copilot_provider.go b/pkg/providers/github_copilot_provider.go index 55a3031dd..11d567893 100644 --- a/pkg/providers/github_copilot_provider.go +++ b/pkg/providers/github_copilot_provider.go @@ -57,13 +57,6 @@ func NewGitHubCopilotProvider(uri string, connectMode string, model string) (*Gi }, nil } -func (p *GitHubCopilotProvider) Close() error { - if p.client != nil { - p.client.Stop() - } - return nil -} - // Chat sends a chat request to GitHub Copilot func (p *GitHubCopilotProvider) Chat(ctx context.Context, messages []Message, tools []ToolDefinition, model string, options map[string]interface{}) (*LLMResponse, error) { type tempMessage struct {