Skip to content

Commit 97e7b48

Browse files
authored
Merge pull request #1047 from vectara/main
Minor update to Vectara modules
2 parents b43a514 + db47503 commit 97e7b48

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

packages/components/nodes/vectorstores/Vectara/Vectara_Existing.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class VectaraExisting_VectorStores implements INode {
3232
}
3333
this.inputs = [
3434
{
35-
label: 'Vectara Metadata Filter',
35+
label: 'Metadata Filter',
3636
name: 'filter',
3737
description:
3838
'Filter to apply to Vectara metadata. Refer to the <a target="_blank" href="https://docs.flowiseai.com/vector-stores/vectara">documentation</a> on how to use Vectara filters with Flowise.',
@@ -105,7 +105,8 @@ class VectaraExisting_VectorStores implements INode {
105105
const vectaraArgs: VectaraLibArgs = {
106106
apiKey: apiKey,
107107
customerId: customerId,
108-
corpusId: corpusId
108+
corpusId: corpusId,
109+
source: 'flowise'
109110
}
110111

111112
const vectaraFilter: VectaraFilter = {}

packages/components/nodes/vectorstores/Vectara/Vectara_Upload.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class VectaraUpload_VectorStores implements INode {
3939
type: 'file'
4040
},
4141
{
42-
label: 'Vectara Metadata Filter',
42+
label: 'Metadata Filter',
4343
name: 'filter',
4444
description:
4545
'Filter to apply to Vectara metadata. Refer to the <a target="_blank" href="https://docs.flowiseai.com/vector-stores/vectara">documentation</a> on how to use Vectara filters with Flowise.',
@@ -113,7 +113,8 @@ class VectaraUpload_VectorStores implements INode {
113113
const vectaraArgs: VectaraLibArgs = {
114114
apiKey: apiKey,
115115
customerId: customerId,
116-
corpusId: corpusId
116+
corpusId: corpusId,
117+
source: 'flowise'
117118
}
118119

119120
const vectaraFilter: VectaraFilter = {}

packages/components/nodes/vectorstores/Vectara/Vectara_Upsert.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class VectaraUpsert_VectorStores implements INode {
4141
list: true
4242
},
4343
{
44-
label: 'Vectara Metadata Filter',
44+
label: 'Metadata Filter',
4545
name: 'filter',
4646
description:
4747
'Filter to apply to Vectara metadata. Refer to the <a target="_blank" href="https://docs.flowiseai.com/vector-stores/vectara">documentation</a> on how to use Vectara filters with Flowise.',
@@ -116,7 +116,8 @@ class VectaraUpsert_VectorStores implements INode {
116116
const vectaraArgs: VectaraLibArgs = {
117117
apiKey: apiKey,
118118
customerId: customerId,
119-
corpusId: corpusId
119+
corpusId: corpusId,
120+
source: 'flowise'
120121
}
121122

122123
const vectaraFilter: VectaraFilter = {}

packages/server/marketplaces/chatflows/Vectara LLM Chain Upload.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"id": "vectaraUpload_0-input-file-file"
3333
},
3434
{
35-
"label": "Vectara Metadata Filter",
35+
"label": "Metadata Filter",
3636
"name": "filter",
3737
"description": "Filter to apply to Vectara metadata. Refer to the <a target=\"_blank\" href=\"https://docs.flowiseai.com/vector-stores/vectara\">documentation</a> on how to use Vectara filters with Flowise.",
3838
"type": "string",

0 commit comments

Comments
 (0)