fix: Linter errors

pull/1760/head
paulpaliychuk 2024-02-22 09:43:57 -08:00
parent aec0645fba
commit 7728178253
1 changed files with 1 additions and 3 deletions

View File

@ -224,9 +224,7 @@ class ZepExistingVS extends ZepVectorStore {
}
static async fromExistingIndex(embeddings: Embeddings, dbConfig: IZepConfig & Partial<ZepFilter>): Promise<ZepVectorStore> {
console.log('fromExistingIndex')
const instance = new this(embeddings, dbConfig)
return instance
return new this(embeddings, dbConfig)
}
}