Skip to main content

langgraph-agentram

An AgentRAM-backed BaseStore for LangGraph. It gives your LangGraph agents cross-thread long-term memory through a hosted key-value API, with no vector database and no embedding pipeline to run.

LangGraph's long-term memory is built on stores: JSON values organized by a namespace and a key. AgentRAM is a hosted memory API with exactly that shape, so this adapter is a thin, honest bridge between the two.

Install

pip install langgraph-agentram

Get a free AgentRAM API key at agentram.dev. New accounts start with 1,000 credits, no card required.

Use it

Pass the store to your agent and it gains memory that survives across threads:

from langchain.agents import create_agent
from langgraph_agentram import AgentRAMStore

store = AgentRAMStore(api_key="agentram_your_key_here")

agent = create_agent("claude-sonnet-4-6", tools=[], store=store)

Or use the store directly:

store.put(("memories", "user-1"), "language", {"value": "French"})
item = store.get(("memories", "user-1"), "language")
print(item.value)  # {"value": "French"}

# list a namespace, or text-search within it
store.search(("memories", "user-1"))
store.search(("memories", "user-1"), query="French")

Memory tools for any LangChain agent

The store plugs into LangGraph's native memory slot. If you would rather give an agent memory it can call as tools, and have it work in plain LangChain too, use the tools:

from langgraph_agentram import create_agentram_tools

tools = create_agentram_tools(api_key="agentram_your_key_here")

from langchain.agents import create_agent
agent = create_agent("claude-sonnet-4-6", tools=tools)

create_agentram_tools returns four tools the agent can call: save_memory, recall_memory, search_memory, and list_memories. They are backed by the same AgentRAM store, so the same honest limits apply. Give separate agents separate namespaces to keep their memories apart:

tools = create_agentram_tools(api_key="agentram_...", namespace=("memories", "user-1"))

How it maps to AgentRAM

  • A namespace tuple becomes an AgentRAM agent_id, joined with / (for example ("memories", "user-1") becomes memories/user-1).
  • The key is the AgentRAM key.
  • The value dict is JSON-encoded into AgentRAM's value field.

Honest limits

This adapter does what AgentRAM does, and nothing it does not.

  • search is a text match, not semantic ranking. score is always None. That is the point: memory without a vector database.
  • search treats the namespace you pass as a full namespace, not a prefix to walk into nested sub-namespaces.
  • list_namespaces is not supported. AgentRAM has no endpoint to enumerate namespaces, so the adapter raises rather than return a wrong answer. Track namespaces in your own app if you need them.
  • A namespace maps to an agent_id capped at 100 characters, and a value is capped at 5,000 characters. Both raise a clear error if exceeded, rather than truncating.
  • Per-item TTL is not mapped in this version.

Config

  • api_key (required): your key, starts with agentram_.
  • base_url (optional): defaults to https://api.agentram.dev.

Links

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langgraph_agentram-0.2.0.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langgraph_agentram-0.2.0-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file langgraph_agentram-0.2.0.tar.gz.

File metadata

  • Download URL: langgraph_agentram-0.2.0.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for langgraph_agentram-0.2.0.tar.gz
Algorithm Hash digest
SHA256 35ba6a4e51ee58a538d8dc4c985a4b228bacc6588c3371e6a7ef75d40291669b
MD5 657b8bba5f2ce89e243d15854d22cc51
BLAKE2b-256 b7909fa6640aa4339972092445056bbb68536093869b7b4086c885aded983506

See more details on using hashes here.

File details

Details for the file langgraph_agentram-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langgraph_agentram-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6fe6d197a882da195a3c1ce4dd7e0ed81f09c3b589be815dac4d92aa3447a94d
MD5 cf27ef84068fffb35f4d7e457cdf1dba
BLAKE2b-256 6dcb582159b7b6e64f22dc77abab7f34c26ee864f9dc6c6a160b1fbe5670b1c1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page