UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

10 lines (9 loc) 526 B
/** * Model-specific prompt configurations and enhancement utilities */ import { isGemini3Model, isGemini25Model } from "../utils/modelDetection.js"; export { isGemini3Model, isGemini25Model }; export declare const MODEL_SPECIFIC_INSTRUCTIONS: Record<string, string>; export declare function getModelSpecificInstructions(model: string): string; export declare function enhancePromptForModel(basePrompt: string, model: string, _provider?: string): string; export declare function shouldEnhancePrompt(model: string): boolean;