Skip to content

Commit 8a4f8d6

Browse files
authored
Merge branch 'main' into drop-table
2 parents 75245fe + 02b1fc6 commit 8a4f8d6

File tree

3 files changed

+950
-390
lines changed

3 files changed

+950
-390
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,19 @@ The package supports the [asyncpg](https://github.com/MagicStack/asyncpg) and [p
2323
pip install -U langchain-postgres
2424
```
2525

26-
## Usage
27-
28-
### Vectorstore
26+
## Vectorstore
2927

3028
> [!WARNING]
3129
> In v0.0.14+, `PGVector` is deprecated. Please migrate to `PGVectorStore`
32-
> Version 0.0.14+ has not been released yet, but you can test version of the vectorstore on the main branch. Until official release do not use in production.
3330
> for improved performance and manageability.
3431
> See the [migration guide](https://github.com/langchain-ai/langchain-postgres/blob/main/examples/migrate_pgvector_to_pgvectorstore.md) for details on how to migrate from `PGVector` to `PGVectorStore`.
3532
36-
For a detailed example on `PGVectorStore` see [here](https://github.com/langchain-ai/langchain-postgres/blob/main/examples/pg_vectorstore.ipynb).
33+
### Documentation
34+
35+
* [Quickstart](https://github.com/langchain-ai/langchain-postgres/blob/main/examples/pg_vectorstore.ipynb)
36+
* [How-to](https://github.com/langchain-ai/langchain-postgres/blob/main/examples/pg_vectorstore_how_to.ipynb)
37+
38+
### Example
3739

3840
```python
3941
from langchain_core.documents import Document
@@ -77,7 +79,7 @@ print(docs)
7779
> [!TIP]
7880
> All synchronous functions have corresponding asynchronous functions
7981
80-
### ChatMessageHistory
82+
## ChatMessageHistory
8183

8284
The chat message history abstraction helps to persist chat message history
8385
in a postgres table.

0 commit comments

Comments
 (0)