Skip to content

Commit 7728178

Browse files
fix: Linter errors
1 parent aec0645 commit 7728178

File tree

1 file changed

+1
-3
lines changed
  • packages/components/nodes/vectorstores/ZepCloud

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,7 @@ class ZepExistingVS extends ZepVectorStore {
224224
}
225225

226226
static async fromExistingIndex(embeddings: Embeddings, dbConfig: IZepConfig & Partial<ZepFilter>): Promise<ZepVectorStore> {
227-
console.log('fromExistingIndex')
228-
const instance = new this(embeddings, dbConfig)
229-
return instance
227+
return new this(embeddings, dbConfig)
230228
}
231229
}
232230

0 commit comments

Comments
 (0)