/** * Model-specific prompt configurations and enhancement utilities */ import { isGemini3Model, isGemini25Model } from "../utils/modelDetection.js"; export { isGemini3Model, isGemini25Model }; export declare const MODEL_SPECIFIC_INSTRUCTIONS: Record; 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;