agsamantha/node_modules/langchain/dist/chains/router/multi_retrieval_prompt.d.ts

3 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
export declare const MULTI_RETRIEVAL_ROUTER_TEMPLATE = "Given a query to a question answering system, select the system best suited for the input. You will be given the names of the available systems and a description of what questions the system is best suited for. You may also revise the original input if you think that revising it will ultimately lead to a better response.\n\n<< FORMATTING >>\nReturn a markdown code snippet with a JSON object formatted to look like:\n```json\n{{{{\n \"destination\": string \\ name of the question answering system to use or \"DEFAULT\"\n \"next_inputs\": string \\ a potentially modified version of the original input\n}}}}\n```\n\nREMEMBER: \"destination\" MUST be one of the candidate prompt names specified below OR it can be \"DEFAULT\" if the input is not well suited for any of the candidate prompts.\nREMEMBER: \"next_inputs\" can just be the original input if you don't think any modifications are needed.\n\n<< CANDIDATE PROMPTS >>\n{destinations}\n\n<< INPUT >>\n{{input}}\n\n<< OUTPUT >>\n";
export declare const STRUCTURED_MULTI_RETRIEVAL_ROUTER_TEMPLATE: (formatting: string) => string;