llamaindex
Version:
<p align="center"> <img height="100" width="100" alt="LlamaIndex logo" src="https://ts.llamaindex.ai/square.svg" /> </p> <h1 align="center">LlamaIndex.TS</h1> <h3 align="center"> Data framework for your LLM application. </h3>
15 lines (14 loc) • 412 B
TypeScript
import { PromptTemplate } from "@llamaindex/core/prompts";
export declare const defaultSingleSelectPrompt: SingleSelectPrompt;
export type SingleSelectPrompt = PromptTemplate<[
"context",
"query",
"numChoices"
]>;
export declare const defaultMultiSelectPrompt: MultiSelectPrompt;
export type MultiSelectPrompt = PromptTemplate<[
"contextList",
"query",
"maxOutputs",
"numChoices"
]>;