Skip to content

Commit aec0645

Browse files
chore: Update labels + get rid of dev urls
1 parent 9da7a1b commit aec0645

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

packages/components/nodes/memory/ZepMemory/ZepMemory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ZepMemory_Memory implements INode {
1818

1919
constructor() {
2020
this.label = 'Zep Memory - Open Source'
21-
this.name = 'Zep Memory (Open Source)'
21+
this.name = 'Zep Memory - Open Source'
2222
this.version = 2.0
2323
this.type = 'ZepMemory'
2424
this.icon = 'zep.svg'

packages/components/nodes/memory/ZepMemoryCloud/ZepMemoryCloud.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ZepMemoryCloud_Memory implements INode {
2020

2121
constructor() {
2222
this.label = 'Zep Memory - Cloud'
23-
this.name = 'Zep Memory (Cloud)'
23+
this.name = 'Zep Memory - Cloud'
2424
this.version = 2.0
2525
this.type = 'ZepMemory'
2626
this.icon = 'zep.svg'
@@ -110,7 +110,6 @@ const initializeZep = async (nodeData: INodeData, options: ICommonObject): Promi
110110
const apiKey = getCredentialParam('apiKey', credentialData, nodeData)
111111
const obj: ZepMemoryInput & ZepMemoryExtendedInput = {
112112
apiKey,
113-
baseURL: 'https://api.development.getzep.com',
114113
aiPrefix,
115114
humanPrefix,
116115
memoryKey,

packages/components/nodes/vectorstores/Zep/Zep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Zep_VectorStores implements INode {
2323

2424
constructor() {
2525
this.label = 'Zep Collection - Open Source'
26-
this.name = 'Zep Collection (Open Source)'
26+
this.name = 'Zep Collection - Open Source'
2727
this.version = 2.0
2828
this.type = 'Zep'
2929
this.icon = 'zep.svg'

packages/components/nodes/vectorstores/Zep/Zep_Existing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class Zep_Existing_VectorStores implements INode {
2020
outputs: INodeOutputsValue[]
2121

2222
constructor() {
23-
this.label = 'Zep Load Existing Index (Open Source)'
24-
this.name = 'Zep Existing Index (Open Source)'
23+
this.label = 'Zep Load Existing Index - Open Source'
24+
this.name = 'Zep Existing Index - Open Source'
2525
this.version = 1.0
2626
this.type = 'Zep'
2727
this.icon = 'zep.svg'

packages/components/nodes/vectorstores/Zep/Zep_Upsert.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class Zep_Upsert_VectorStores implements INode {
2020
outputs: INodeOutputsValue[]
2121

2222
constructor() {
23-
this.label = 'Zep Upsert Document (Open Source)'
24-
this.name = 'Zep Upsert (Open Source)'
23+
this.label = 'Zep Upsert Document - Open Source'
24+
this.name = 'Zep Upsert - Open Source'
2525
this.version = 1.0
2626
this.type = 'Zep'
2727
this.icon = 'zep.svg'

packages/components/nodes/vectorstores/ZepCloud/ZepCloud.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Zep_CloudVectorStores implements INode {
2323

2424
constructor() {
2525
this.label = 'Zep Collection - Cloud'
26-
this.name = 'Zep Collection Cloud'
26+
this.name = 'Zep Collection - Cloud'
2727
this.version = 2.0
2828
this.type = 'Zep'
2929
this.icon = 'zep.svg'
@@ -121,7 +121,6 @@ class Zep_CloudVectorStores implements INode {
121121
const apiKey = getCredentialParam('apiKey', credentialData, nodeData)
122122

123123
const zepConfig: IZepConfig & Partial<ZepFilter> = {
124-
apiUrl: 'https://api.development.getzep.com',
125124
apiKey,
126125
collectionName: zepCollection
127126
}

0 commit comments

Comments
 (0)