langchain-postgres 0.0.6__py3-none-any.whl → 0.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- langchain_postgres/vectorstores.py +896 -76
- {langchain_postgres-0.0.6.dist-info → langchain_postgres-0.0.7.dist-info}/METADATA +8 -1
- {langchain_postgres-0.0.6.dist-info → langchain_postgres-0.0.7.dist-info}/RECORD +5 -5
- {langchain_postgres-0.0.6.dist-info → langchain_postgres-0.0.7.dist-info}/LICENSE +0 -0
- {langchain_postgres-0.0.6.dist-info → langchain_postgres-0.0.7.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: langchain-postgres
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.7
|
4
4
|
Summary: An integration package connecting Postgres and LangChain
|
5
5
|
Home-page: https://github.com/langchain-ai/langchain-postgres
|
6
6
|
License: MIT
|
@@ -18,6 +18,7 @@ Requires-Dist: psycopg (>=3,<4)
|
|
18
18
|
Requires-Dist: psycopg-pool (>=3.2.1,<4.0.0)
|
19
19
|
Requires-Dist: sqlalchemy (>=2,<3)
|
20
20
|
Project-URL: Repository, https://github.com/langchain-ai/langchain-postgres
|
21
|
+
Project-URL: Source Code, https://github.com/langchain-ai/langchain-postgres/tree/master/langchain_postgres
|
21
22
|
Description-Content-Type: text/markdown
|
22
23
|
|
23
24
|
# langchain-postgres
|
@@ -45,6 +46,12 @@ The package currently only supports the [psycogp3](https://www.psycopg.org/psyco
|
|
45
46
|
pip install -U langchain-postgres
|
46
47
|
```
|
47
48
|
|
49
|
+
## Change Log
|
50
|
+
|
51
|
+
0.0.6:
|
52
|
+
- Remove langgraph as a dependency as it was causing dependency conflicts.
|
53
|
+
- Base interface for checkpointer changed in langgraph, so existing implementation would've broken regardless.
|
54
|
+
|
48
55
|
## Usage
|
49
56
|
|
50
57
|
### ChatMessageHistory
|
@@ -2,8 +2,8 @@ langchain_postgres/__init__.py,sha256=9rXsSowLZpH_dqyWJUhpTVwviQ02wLTZj_kPi6OOfc
|
|
2
2
|
langchain_postgres/_utils.py,sha256=Johm50HEgA4qScLDaSDIfJfF3DygjA5KTBtNeVcD63I,2914
|
3
3
|
langchain_postgres/chat_message_histories.py,sha256=gh6hjBlrJ5GSo5kePQdh3VhiUYoWWdP37GXtZ1e25a4,14033
|
4
4
|
langchain_postgres/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
langchain_postgres/vectorstores.py,sha256=
|
6
|
-
langchain_postgres-0.0.
|
7
|
-
langchain_postgres-0.0.
|
8
|
-
langchain_postgres-0.0.
|
9
|
-
langchain_postgres-0.0.
|
5
|
+
langchain_postgres/vectorstores.py,sha256=hV-J7tGp-s6ZiTLSi0uLnswVG_Gb8E6ZVZE0nzE2e2g,81052
|
6
|
+
langchain_postgres-0.0.7.dist-info/LICENSE,sha256=2btS8uNUDWD_UNjw9ba6ZJt_00aUjEw9CGyK-xIHY8c,1072
|
7
|
+
langchain_postgres-0.0.7.dist-info/METADATA,sha256=xG_riG4igA4C6m7zIy6kim2W9zN85Tmb45CzSqLKCOw,4015
|
8
|
+
langchain_postgres-0.0.7.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
9
|
+
langchain_postgres-0.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|