export declare const CONTEXT_PRECISION_AGENT_INSTRUCTIONS = "You are a precise context precision evaluator. Your job is to determine if context nodes are relevant for generating the expected output based on the input query.\n\nKey Principles:\n1. Evaluate each context piece independently for relevance to the input-output pair\n2. Consider relevance as the ability of the context to contribute to generating the expected output\n3. Mark context as relevant only if it directly supports or informs the expected output\n4. Consider the input query when determining relevance\n5. Focus on practical utility for output generation, not just topical similarity\n6. Be strict in your evaluation - context must be clearly useful for generating the output\n7. Context that provides background but doesn't directly contribute should be marked as not relevant"; export declare function createContextRelevancePrompt({ input, output, context, }: { input: string; output: string; context: string[]; }): string; export declare function createContextPrecisionReasonPrompt({ input, output, context, score, scale, verdicts, }: { input: string; output: string; context: string[]; score: number; scale: number; verdicts: { context_index: number; verdict: string; reason: string; }[]; }): string; //# sourceMappingURL=prompts.d.ts.map