Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: langchain-ai/langchain-postgres
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: langchain-postgres==0.0.16
Choose a base ref
...
head repository: langchain-ai/langchain-postgres
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 3 files changed
  • 5 contributors

Commits on Oct 31, 2025

  1. docs: fix update command to install packages using uv & update port … (

    …#260)
    
    …to default port used in tests
    
    ---------
    
    Co-authored-by: Averi Kitsch <[email protected]>
    gRedHeadphone and averikitsch authored Oct 31, 2025
    Configuration menu
    Copy the full SHA
    c05a224 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2025

  1. docs: Fix incorrect connection string format in README.md example (#267)

    The connection string example in README.md is incorrect.
    
    Currently, README.md shows:
    ```python
    CONNECTION_STRING = "postgresql+psycopg3://langchain:langchain@localhost:6024/langchain"
    ```
    
    However, this format causes the following error:
    ```
    NoSuchModuleError: Can't load plugin: sqlalchemy.dialects:postgresql.psycopg3
    ```
    
    The actual example files (`examples/vectorstore.ipynb`,
    `examples/pg_vectorstore.ipynb`, etc.) use the correct format
    `postgresql+psycopg://`, which works correctly.
    
    The `examples/vectorstore.ipynb` also explicitly states: "the driver
    name is `psycopg` not `psycopg3`, but it'll use `psycopg3`."
    
    **Proposed fix:**
    Line 46 in README.md should be changed from:
    ```python
    CONNECTION_STRING = "postgresql+psycopg3://langchain:langchain@localhost:6024/langchain"
    ```
    
    to:
    ```python
    CONNECTION_STRING = "postgresql+psycopg://langchain:langchain@localhost:6024/langchain"
    ```
    yukiharada1228 authored Nov 14, 2025
    Configuration menu
    Copy the full SHA
    c97cff5 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2025

  1. fix: reindex&drop_index without schema (#270)

    ### Summary
    
    When a database schema is specified, areindex and adrop_vector_index in
    AsyncPGVectorStore do not take effect.
    
    Fixes: #269
    
    Co-authored-by: jay.li <[email protected]>
    qingchen177 and jay.li authored Dec 11, 2025
    Configuration menu
    Copy the full SHA
    5b94c7c View commit details
    Browse the repository at this point in the history
Loading