feat(editor): Rename 'Text' fields on AI nodes to 'Prompt' (#13416)

This commit is contained in:
Jaakko Husso
2025-02-21 18:38:14 +02:00
committed by GitHub
parent 7a504dc30f
commit 4fa666b976
5 changed files with 7 additions and 5 deletions

View File

@@ -123,11 +123,12 @@ export class ChainRetrievalQa implements INodeType {
displayOptions: { show: { promptType: ['auto'], '@version': [{ _cnd: { gte: 1.4 } }] } },
},
{
displayName: 'Text',
displayName: 'Prompt (User Message)',
name: 'text',
type: 'string',
required: true,
default: '',
placeholder: 'e.g. Hello, how can you help me?',
typeOptions: {
rows: 2,
},