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 506 B
/** * Anthropic Claude provider implementation */ import { BaseLLMProvider, LLMResponse } from './base'; export declare class ClaudeProvider extends BaseLLMProvider { readonly name = "Anthropic Claude"; readonly defaultModel = "claude-3-5-sonnet-20241022"; readonly apiKeyUrl = "https://console.anthropic.com/account/keys"; readonly apiKeyPrefix = "sk-ant-"; processRequest(prompt: string, model?: string, apiKey?: string): Promise<LLMResponse>; } //# sourceMappingURL=claude.d.ts.map