6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
|
import { PromptTemplate } from "@langchain/core/prompts";
|
||
|
export declare const REFINE_PROMPT: PromptTemplate<{
|
||
|
text: any;
|
||
|
existing_answer: any;
|
||
|
}, any>;
|