add baseClasses for outputs

This commit is contained in:
Henry
2023-04-20 00:46:33 +01:00
parent df7a3995cd
commit 27e026d943
3 changed files with 12 additions and 11 deletions
@@ -43,14 +43,14 @@ class LLMChain_Chains implements INode {
]
this.outputs = [
{
label: this.label,
name: this.name,
type: this.type
label: 'LLM Chain',
name: 'llmChain',
baseClasses: [this.type, ...getBaseClasses(LLMChain)]
},
{
label: 'Output Prediction',
name: 'outputPrediction',
type: 'string'
baseClasses: ['string']
}
]
}