update LLMChain prompt

This commit is contained in:
Henry Heng
2023-10-31 23:54:55 +00:00
committed by GitHub
parent 5147da913c
commit 8292e5a3db
@@ -31,16 +31,16 @@ class LLMChain_Chains implements INode {
this.description = 'Chain to run queries against LLMs'
this.baseClasses = [this.type, ...getBaseClasses(LLMChain)]
this.inputs = [
{
label: 'Prompt',
name: 'prompt',
type: 'BasePromptTemplate'
},
{
label: 'Language Model',
name: 'model',
type: 'BaseLanguageModel'
},
{
label: 'Prompt',
name: 'prompt',
type: 'BasePromptTemplate'
},
{
label: 'Output Parser',
name: 'outputParser',