Files
LlamaIndexTS/apps/docs/docs/api/classes/LLMQuestionGenerator.md
T
Yi Ding 7699f5432d set typedoc revision to main
In theory this will stop the API docs thrashing on every build.

Of course, there is a drawback in that if main changes but we haven't
released a new version of the docs yet the links will go out of date.

So longer term we might want to investigate some kind of variable where
we can continue to have up to date revs but keep the rev in a single
variable somewhere:

https://github.com/facebook/docusaurus/issues/395

In the meantime much smaller commits will be a relief
2023-07-25 23:06:44 -07:00

2.0 KiB

id, title, sidebar_label, sidebar_position, custom_edit_url
id title sidebar_label sidebar_position custom_edit_url
LLMQuestionGenerator Class: LLMQuestionGenerator LLMQuestionGenerator 0 null

LLMQuestionGenerator uses the LLM to generate new questions for the LLM using tools and a user query.

Implements

Constructors

constructor

new LLMQuestionGenerator(init?)

Parameters

Name Type
init? Partial<LLMQuestionGenerator>

Defined in

QuestionGenerator.ts:34

Properties

llm

llm: LLM

Defined in

QuestionGenerator.ts:30


outputParser

outputParser: BaseOutputParser<StructuredOutput<SubQuestion[]>>

Defined in

QuestionGenerator.ts:32


prompt

prompt: SimplePrompt

Defined in

QuestionGenerator.ts:31

Methods

generate

generate(tools, query): Promise<SubQuestion[]>

Parameters

Name Type
tools ToolMetadata[]
query string

Returns

Promise<SubQuestion[]>

Implementation of

BaseQuestionGenerator.generate

Defined in

QuestionGenerator.ts:40