agsamantha/node_modules/langchain/dist/evaluation/criteria/prompt.d.ts

13 lines
317 B
TypeScript
Raw Normal View History

2024-10-02 20:15:21 +00:00
import { PromptTemplate } from "@langchain/core/prompts";
export declare const CRITERIA_PROMPT: PromptTemplate<{
input: any;
output: any;
criteria: any;
}, any>;
export declare const PROMPT_WITH_REFERENCES: PromptTemplate<{
input: any;
output: any;
criteria: any;
reference: any;
}, any>;