Async Store client for LangGraph SDK.
Handle async requests to the LangGraph API.
Adds additional error messaging & content handling above the provided httpx client.
Represents a single document or data entry in the graph's Store.
Items are used to store cross-thread memories.
Response structure for listing namespaces.
Response structure for searching items.
Client for interacting with the graph's shared storage.
The Store provides a key-value storage system for persisting data across graph executions, allowing for stateful operations and data sharing across threads.
client = get_client(url="http://localhost:2024")
await client.store.put_item(["users", "user123"], "mem-123451342", {"name": "Alice", "score": 100})