UNPKG

context-optimizer-mcp-server

Version:

Context optimization tools MCP server for AI coding assistants - compatible with GitHub Copilot, Cursor AI, and other MCP-supporting assistants

12 lines 487 B
/** * Google Gemini provider implementation */ import { BaseLLMProvider, LLMResponse } from './base'; export declare class GeminiProvider extends BaseLLMProvider { readonly name = "Google Gemini"; readonly defaultModel = "gemini-2.5-flash"; readonly apiKeyUrl = "https://makersuite.google.com/app/apikey"; readonly apiKeyPrefix: undefined; processRequest(prompt: string, model?: string, apiKey?: string): Promise<LLMResponse>; } //# sourceMappingURL=gemini.d.ts.map