update LLMChain prompt
This commit is contained in:
parent
5147da913c
commit
8292e5a3db
|
|
@ -31,16 +31,16 @@ class LLMChain_Chains implements INode {
|
||||||
this.description = 'Chain to run queries against LLMs'
|
this.description = 'Chain to run queries against LLMs'
|
||||||
this.baseClasses = [this.type, ...getBaseClasses(LLMChain)]
|
this.baseClasses = [this.type, ...getBaseClasses(LLMChain)]
|
||||||
this.inputs = [
|
this.inputs = [
|
||||||
{
|
|
||||||
label: 'Prompt',
|
|
||||||
name: 'prompt',
|
|
||||||
type: 'BasePromptTemplate'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: 'Language Model',
|
label: 'Language Model',
|
||||||
name: 'model',
|
name: 'model',
|
||||||
type: 'BaseLanguageModel'
|
type: 'BaseLanguageModel'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Prompt',
|
||||||
|
name: 'prompt',
|
||||||
|
type: 'BasePromptTemplate'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Output Parser',
|
label: 'Output Parser',
|
||||||
name: 'outputParser',
|
name: 'outputParser',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue