Add your description here
Project description
langmem-adapter
langmem-adapter is a lightweight, generic adapter for LangMem tools. It seamlessly integrates LangMem tools into your openai agents sdk agents by supporting both static (pre‑injected store) and dynamic store injection.
With dynamic mode, you can have per-invocation store creation (e.g. for database connections) and dynamically formatted namespaces based on your context.
Features
- Dynamic & Static Modes:
- Static Mode: Use an already‑constructed tool instance with a fixed (static) namespace.
- Dynamic Mode: Provide a store provider (async context manager) and a factory callable so that each call gets a fresh store from a connection pool.
- Context-Based Namespace Formatting:
Format namespaces dynamically using a tuple of template strings. For example:
("email_assistant", "{langgraph_user_id}", "collection")
The placeholders are filled from a Pydantic context. - Type Safety:
Uses Pydantic for argument validation and ensures UUIDs and JSON fields are correctly converted. - Generic Context Support:
The adapter is generic over a context type (bounded to Pydantic’sBaseModel), ensuring your context data is correctly typed.
Installation
Install via pip (assuming you publish it on PyPI):
pip install langmem-adapter
Or install from source:
git clone https://github.com/mjunaidca/langmem-adapter.git
cd langmem-adapter
pip install .
Usage
Dynamic Mode Example
In dynamic mode, you provide:
- A factory callable that takes a store and a namespace and returns a new LangMem tool instance.
- A
store_providerthat returns an async context manager yielding a fresh store. - A namespace template as a tuple of strings with placeholders to be filled from the context.
from langmem import create_manage_memory_tool, create_search_memory_tool
from langmem_adapter import LangMemOpenAIAgentToolAdapter # import from your package
from your_store_module import get_store # your async context manager
from pydantic import BaseModel
# Define your context model.
class UserContext(BaseModel):
langgraph_user_id: str
# add other fields as needed
# Initialize the adapter for the manage memory tool.
manage_adapter = LangMemOpenAIAgentToolAdapter(
lambda store, namespace=None: create_manage_memory_tool(namespace=namespace, store=store),
store_provider=get_store,
namespace_template=("email_assistant", "{langgraph_user_id}", "collection")
)
manage_memory_tool = manage_adapter.as_tool()
# Similarly, for the search memory tool.
search_adapter = LangMemOpenAIAgentToolAdapter(
lambda store, namespace=None: create_search_memory_tool(namespace=namespace, store=store),
store_provider=get_store,
namespace_template=("email_assistant", "{langgraph_user_id}", "search")
)
search_memory_tool = search_adapter.as_tool()
# In your agent or wherever you need to use the tool, the dynamic namespace will be
# formatted using the context (an instance of UserContext) passed in through the RunContextWrapper.
Static Mode Example
If you have a persistent store (with connection pooling) and a fixed namespace, you can use static mode:
from langmem import create_manage_memory_tool
from langmem_adapter import LangMemOpenAIAgentToolAdapter
# Pre-create your store (with pooling) and tool.
store = ... # your pre-initialized store instance
manage_memory_tool_instance = create_manage_memory_tool(namespace=("email_assistant", "collection"), store=store)
adapter = LangMemOpenAIAgentToolAdapter(manage_memory_tool_instance)
manage_memory_tool = adapter.as_tool()
# This tool will use the static namespace you provided.
API Reference
Class: LangMemOpenAIAgentToolAdapter[TContext]
A generic adapter that binds a LangMem tool with a dynamic store provider and dynamic namespace formatting.
Constructor Parameters:
langmem_tool: Any- In static mode, an already‑constructed tool instance.
- In dynamic mode, a factory callable that accepts a store (and optionally a namespace) and returns a tool instance.
store_provider: Optional[Callable[[], Any]]
An async context manager that yields a store instance. If provided, dynamic mode is enabled.namespace_template: Optional[tuple[str, ...]]
A tuple of template strings used to dynamically construct the namespace. Placeholders in these strings (e.g."{langgraph_user_id}") are replaced with values from the context (which must be a Pydantic model).
Method: as_tool() -> FunctionTool
Returns a FunctionTool instance that can be used by your agent.
Internal Method: _on_invoke_tool(ctx: RunContextWrapper[TContext], args: str) -> str
Parses and validates the input arguments, converts types as needed, dynamically creates a new tool instance if in dynamic mode, and invokes the tool’s callable.
Contributing
Contributions are welcome! Please submit issues or pull requests via GitHub.
License
This package abstracts away the complexities of dynamic store injection, context-based namespace formatting, and type-safe argument conversion. It’s small, reusable, and perfect for integrating LangMem tools into various projects.
Happy coding!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langmem_adapter-0.0.2.tar.gz.
File metadata
- Download URL: langmem_adapter-0.0.2.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
767f02df26a5ea32effc65307687239664af9706ef3f0a94ee4302d57425f262
|
|
| MD5 |
508c593e593933252f80cc8d7a00ad2e
|
|
| BLAKE2b-256 |
2dda822174e2e4b754754a04e86c7ce266210d441c0cafa3583e19e3402b4a5c
|
File details
Details for the file langmem_adapter-0.0.2-py3-none-any.whl.
File metadata
- Download URL: langmem_adapter-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83e560047db4b4ab1cfcdd4b235a3288c4f6df67e74925147884a5964daa0489
|
|
| MD5 |
740eab8e0dcd9f0f403396b326ec3162
|
|
| BLAKE2b-256 |
a672048e234fe4b5119079836e4409f00c597040d201d156791f237e25fbe808
|