Bumped Anthropic SDK Version (#2598)

This commit is contained in:
Saket Aryan
2025-05-01 02:32:59 +05:30
committed by GitHub
parent ad98f542f8
commit 42c98e5717
4 changed files with 13 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ export class PGVector implements VectorStore {
private config: PGVectorConfig;
constructor(config: PGVectorConfig) {
this.collectionName = config.collectionName;
this.collectionName = config.collectionName || "memories";
this.useDiskann = config.diskann || false;
this.useHnsw = config.hnsw || false;
this.dbName = config.dbname || "vector_store";