Class: LLMSingleSelector
A selector that uses the LLM to select a single choice from a list of choices.
Extends
Constructors
new LLMSingleSelector()
new LLMSingleSelector(
init
):LLMSingleSelector
Parameters
• init
• init.llm: LLM
<object
, object
>
• init.outputParser?: BaseOutputParser
<StructuredOutput
<Answer
[]>>
• init.prompt?
Returns
Overrides
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:122
Properties
llm
llm:
LLM
<object
,object
>
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:118
outputParser
outputParser:
BaseOutputParser
<StructuredOutput
<Answer
[]>>
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:120
prompt()
prompt: (
numChoices
,contextList
,queryStr
) =>string
Parameters
• numChoices: number
• contextList: string
• queryStr: string
Returns
string
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:119
Methods
_getPromptModules()
protected
_getPromptModules():Record
<string
,any
>
Returns
Record
<string
, any
>
Inherited from
BaseSelector
._getPromptModules
Defined in
packages/llamaindex/src/prompts/Mixin.ts:83
_getPrompts()
_getPrompts():
Record
<string
, (numChoices
,contextList
,queryStr
) =>string
>
Returns
Record
<string
, (numChoices
, contextList
, queryStr
) => string
>
Overrides
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:133
_select()
_select(
choices
,query
):Promise
<SelectorResult
>
Selects a single choice from a list of choices.
Parameters
• choices: ToolMetadataOnlyDescription
[]
• query: QueryBundle
Returns
Promise
<SelectorResult
>
Overrides
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:148
_updatePrompts()
_updatePrompts(
prompts
):void
Parameters
• prompts: Record
<string
, (numChoices
, contextList
, queryStr
) => string
>
Returns
void
Overrides
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:137
asQueryComponent()
asQueryComponent():
unknown
Returns
unknown
Defined in
packages/llamaindex/src/selectors/llmSelectors.ts:175
getPrompts()
getPrompts():
PromptsDict
Returns all prompts from the mixin and its modules
Returns
PromptsDict
Inherited from
Defined in
packages/llamaindex/src/prompts/Mixin.ts:27
select()
select(
choices
,query
):Promise
<SelectorResult
>
Parameters
• choices: MetadataType
[]
• query: QueryType
Returns
Promise
<SelectorResult
>
Inherited from
Defined in
packages/llamaindex/src/selectors/base.ts:27
updatePrompts()
updatePrompts(
promptsDict
):void
Updates the prompts in the mixin and its modules
Parameters
• promptsDict: PromptsDict
Returns
void
Inherited from
Defined in
packages/llamaindex/src/prompts/Mixin.ts:48
validatePrompts()
validatePrompts(
promptsDict
,moduleDict
):void
Validates the prompt keys and module keys
Parameters
• promptsDict: PromptsDict
• moduleDict: ModuleDict
Returns
void