Class: SubQuestionQueryEngine
SubQuestionQueryEngine decomposes a question into subquestions and then
Extends
Constructors
new SubQuestionQueryEngine()
new SubQuestionQueryEngine(
init
):SubQuestionQueryEngine
Parameters
• init
• init.queryEngineTools: BaseTool
<any
>[]
• init.questionGen: BaseQuestionGenerator
• init.responseSynthesizer: BaseSynthesizer
Returns
Overrides
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:25
Properties
metadatas
metadatas:
ToolMetadata
[]
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:23
queryEngines
queryEngines:
BaseTool
<any
>[]
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:22
questionGen
questionGen:
BaseQuestionGenerator
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:21
responseSynthesizer
responseSynthesizer:
BaseSynthesizer
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:20
Methods
_getPromptModules()
protected
_getPromptModules():Record
<string
,any
>
Return a dictionary of sub-modules within the current module that also implement PromptMixin (so that their prompts can also be get/set).
Can be blank if no sub-modules.
Returns
Record
<string
, any
>
Overrides
BaseQueryEngine
._getPromptModules
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:85
_getPrompts()
protected
_getPrompts():PromptsRecord
Returns
Overrides
Defined in
packages/llamaindex/src/engines/query/SubQuestionQueryEngine.ts:78
_query()
_query(
strOrQueryBundle
,stream
?):Promise
<EngineResponse
|AsyncIterable
<EngineResponse
,any
,any
>>