UNPKG

navigation-equipment-manuals-mcp-server

Version:

Navigation Equipment Manuals MCP Server for create, update, delete, and search navigation equipment manuals

28 lines 1.5 kB
export declare const OPENAI_API_KEY: string; export declare const COHERE_API_KEY: string; export declare const PERPLEXITY_API_KEY: string; export declare const MONGODB_URI: string; export declare const MONGODB_DB_NAME: string; export declare const S3_API_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7ImlkIjoiNjRkMzdhMDM1Mjk5YjFlMDQxOTFmOTJhIiwiZmlyc3ROYW1lIjoiU3lpYSIsImxhc3ROYW1lIjoiRGV2IiwiZW1haWwiOiJkZXZAc3lpYS5haSIsInJvbGUiOiJhZG1pbiIsInJvbGVJZCI6IjVmNGUyODFkZDE4MjM0MzY4NDE1ZjViZiIsImlhdCI6MTc0MDgwODg2OH0sImlhdCI6MTc0MDgwODg2OCwiZXhwIjoxNzcyMzQ0ODY4fQ.1grxEO0aO7wfkSNDzpLMHXFYuXjaA1bBguw2SJS9r2M"; export declare const S3_GENERATE_HTML_URL = "https://dev-api.siya.com/v1.0/s3bucket/generate-html"; export declare const NAVIGATION_MANUALS_COLLECTION = "navigation_manuals"; export declare const COHERE_RERANK_LIMIT = 5; export declare const COHERE_MODEL = "rerank-v3.5"; export declare const DEFAULT_SEARCH_LIMIT = 7; export declare const MAX_SEARCH_RESULTS = 10; export declare const COHERE_MAX_DOCUMENTS = 50; /** * Set runtime configuration from parsed command-line arguments */ export declare function setRuntimeConfig(config: { openaiApiKey?: string; cohereApiKey?: string; perplexityApiKey?: string; }): void; /** * Get API keys with runtime configuration override */ export declare function getOpenAIApiKey(): string; export declare function getCohereApiKey(): string; export declare function getPerplexityApiKey(): string; //# sourceMappingURL=constants.d.ts.map