@tiger16601/n8n-nodes-fastgpt 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -110,7 +110,7 @@ const completeOperations = [
|
|
|
110
110
|
default: '',
|
|
111
111
|
displayOptions: {
|
|
112
112
|
show: {
|
|
113
|
-
operation: ['获取知识库列表'
|
|
113
|
+
operation: ['获取知识库列表'],
|
|
114
114
|
resource: ['knowledge'],
|
|
115
115
|
},
|
|
116
116
|
},
|
|
@@ -495,9 +495,10 @@ const sharedOperations = [
|
|
|
495
495
|
},
|
|
496
496
|
},
|
|
497
497
|
options: [
|
|
498
|
+
// [新增] 可选参数:头像、向量模型、文本处理模型、图片理解模型
|
|
498
499
|
{
|
|
499
|
-
displayName: '
|
|
500
|
-
name: '
|
|
500
|
+
displayName: '父级知识库ID',
|
|
501
|
+
name: 'parentId',
|
|
501
502
|
type: 'string',
|
|
502
503
|
default: '',
|
|
503
504
|
displayOptions: {
|
|
@@ -513,6 +514,58 @@ const sharedOperations = [
|
|
|
513
514
|
},
|
|
514
515
|
},
|
|
515
516
|
},
|
|
517
|
+
{
|
|
518
|
+
displayName: '头像地址',
|
|
519
|
+
name: 'knowledgeAvatar',
|
|
520
|
+
type: 'string',
|
|
521
|
+
default: '',
|
|
522
|
+
description: '知识库头像的URL地址,可选',
|
|
523
|
+
routing: {
|
|
524
|
+
send: {
|
|
525
|
+
type: 'body',
|
|
526
|
+
property: 'avatar',
|
|
527
|
+
},
|
|
528
|
+
},
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
displayName: '向量模型',
|
|
532
|
+
name: 'knowledgeVectorModel',
|
|
533
|
+
type: 'string',
|
|
534
|
+
default: '',
|
|
535
|
+
description: '建议留空使用系统默认。例如:text-embedding-ada-002',
|
|
536
|
+
routing: {
|
|
537
|
+
send: {
|
|
538
|
+
type: 'body',
|
|
539
|
+
property: 'vectorModel',
|
|
540
|
+
},
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
displayName: '文本处理模型',
|
|
545
|
+
name: 'knowledgeAgentModel',
|
|
546
|
+
type: 'string',
|
|
547
|
+
default: '',
|
|
548
|
+
description: '建议留空使用系统默认。例如:gpt-3.5-turbo-16k',
|
|
549
|
+
routing: {
|
|
550
|
+
send: {
|
|
551
|
+
type: 'body',
|
|
552
|
+
property: 'agentModel',
|
|
553
|
+
},
|
|
554
|
+
},
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
displayName: '图片理解模型',
|
|
558
|
+
name: 'knowledgeVlmModel',
|
|
559
|
+
type: 'string',
|
|
560
|
+
default: '',
|
|
561
|
+
description: '建议留空使用系统默认。例如:gpt-4.1',
|
|
562
|
+
routing: {
|
|
563
|
+
send: {
|
|
564
|
+
type: 'body',
|
|
565
|
+
property: 'vlmModel',
|
|
566
|
+
},
|
|
567
|
+
},
|
|
568
|
+
},
|
|
516
569
|
],
|
|
517
570
|
},
|
|
518
571
|
];
|