mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 06:35:46 +02:00
### Description Export PoolConfig from langgraph.store.postgres.__init__ so the documented import from langgraph.store.postgres import AsyncPostgresStore, PoolConfig works as shown in the AsyncPostgresStore examples. This resolves a docs vs. code inconsistency without changing behavior. ### Issue N/A ### Dependencies: None --------- Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com> Co-authored-by: Sydney Runkle <54324534+sydney-runkle@users.noreply.github.com>
5 lines
193 B
Python
5 lines
193 B
Python
from langgraph.store.postgres.aio import AsyncPostgresStore
|
|
from langgraph.store.postgres.base import PoolConfig, PostgresStore
|
|
|
|
__all__ = ["AsyncPostgresStore", "PoolConfig", "PostgresStore"]
|