You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llama-index-integrations/storage/docstore/llama-index-storage-docstore-postgres/llama_index/storage/docstore/postgres/base.py
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,14 @@
6
6
7
7
8
8
classPostgresDocumentStore(KVDocumentStore):
9
-
"""Mongo Document (Node) store.
9
+
"""Postgres Document (Node) store.
10
10
11
-
A MongoDB store for Document and Node objects.
11
+
A Postgres store for Document and Node objects.
12
12
13
13
Args:
14
-
mongo_kvstore (MongoDBKVStore): MongoDB key-value store
14
+
postgres_kvstore (PostgresKVStore): Postgres key-value store
Copy file name to clipboardExpand all lines: llama-index-integrations/storage/kvstore/llama-index-storage-kvstore-postgres/llama_index/storage/kvstore/postgres/base.py
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -55,11 +55,13 @@ class PostgresKVStore(BaseKVStore):
0 commit comments