From ae3223a317e5fd26ab06191b386f62de1ee7a2bb Mon Sep 17 00:00:00 2001 From: Mingholy Date: Tue, 14 Oct 2025 15:39:48 +0800 Subject: [PATCH] fix: remove unavailable options (#685) --- .../cli/src/zed-integration/zedIntegration.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/packages/cli/src/zed-integration/zedIntegration.ts b/packages/cli/src/zed-integration/zedIntegration.ts index 8e39d3f0..cd81b276 100644 --- a/packages/cli/src/zed-integration/zedIntegration.ts +++ b/packages/cli/src/zed-integration/zedIntegration.ts @@ -81,22 +81,6 @@ class GeminiAgent { ): Promise { this.clientCapabilities = args.clientCapabilities; const authMethods = [ - { - id: AuthType.LOGIN_WITH_GOOGLE, - name: 'Log in with Google', - description: null, - }, - { - id: AuthType.USE_GEMINI, - name: 'Use Gemini API key', - description: - 'Requires setting the `GEMINI_API_KEY` environment variable', - }, - { - id: AuthType.USE_VERTEX_AI, - name: 'Vertex AI', - description: null, - }, { id: AuthType.USE_OPENAI, name: 'Use OpenAI API key',