UNPKG

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>

13 lines (12 loc) 420 B
import type { ToolMetadata } from "@llamaindex/core/llms"; import type { QueryType } from "@llamaindex/core/query-engine"; /** * QuestionGenerators generate new questions for the LLM using tools and a user query. */ export interface BaseQuestionGenerator { generate(tools: ToolMetadata[], query: QueryType): Promise<SubQuestion[]>; } export interface SubQuestion { subQuestion: string; toolName: string; }