Skip to main content

MenteDB integration for LangChain and LangGraph

Project description

mentedb-langchain

MenteDB integration for LangChain and LangGraph. Gives your agents persistent, cognitive memory that goes beyond simple vector retrieval.

Installation

pip install mentedb-langchain

Components

MenteDBMemory

A LangChain compatible memory backend that stores conversation context in MenteDB. Unlike buffer or summary memory, MenteDBMemory uses hybrid search (vector similarity, tag filtering, temporal decay) to assemble the most relevant context for each turn.

from mentedb_langchain import MenteDBMemory
from langchain.chains import ConversationChain
from langchain_openai import ChatOpenAI

memory = MenteDBMemory(
    data_dir="./agent-memory",
    agent_id="my-agent",
    token_budget=4096,
)

chain = ConversationChain(
    llm=ChatOpenAI(),
    memory=memory,
)

chain.predict(input="What database should I use for time series data?")
chain.predict(input="Tell me more about that recommendation")

MenteDBRetriever

A LangChain compatible retriever that uses MenteDB hybrid search. Supports optional tag filtering and agent scoping to narrow results.

from mentedb_langchain import MenteDBRetriever
from langchain.chains import RetrievalQA
from langchain_openai import ChatOpenAI

retriever = MenteDBRetriever(
    data_dir="./agent-memory",
    k=10,
    tags=["backend", "architecture"],
)

chain = RetrievalQA.from_chain_type(
    llm=ChatOpenAI(),
    retriever=retriever,
)

chain.invoke("What were the key decisions about our database migration?")

MenteDBChatHistory

Persistent chat history with cognitive tracking. MenteDB stores messages alongside reasoning trajectories, knowledge gaps, and contradiction signals so the agent's memory improves over time.

from mentedb_langchain import MenteDBChatHistory

history = MenteDBChatHistory(
    session_id="session-123",
    data_dir="./agent-memory",
)

history.add_user_message("What database should I use?")
history.add_ai_message("I recommend PostgreSQL for your use case.")

messages = history.messages

Usage with LangGraph

MenteDB works naturally with LangGraph. Use MenteDBMemory as a checkpointer or context source within graph nodes:

from mentedb_langchain import MenteDBMemory

memory = MenteDBMemory(data_dir="./graph-memory", agent_id="planner")

def plan_node(state):
    context = memory.load_memory_variables({"input": state["task"]})
    # Use context to inform planning
    return {**state, "context": context}

def reflect_node(state):
    memory.save_context(
        inputs={"input": state["task"]},
        outputs={"output": state["result"]},
    )
    return state

Configuration

All components accept data_dir to specify where MenteDB stores its data. For multi agent setups, use agent_id to isolate each agent's memory space.

Parameter Default Description
data_dir ./mentedb-data Path to the MenteDB data directory
agent_id None Optional agent identifier for memory isolation
token_budget 4096 Maximum tokens for assembled context (MenteDBMemory)
k 10 Number of results to return (MenteDBRetriever)
tags None Tag filter for retrieval (MenteDBRetriever)

License

Apache 2.0

Project details


Download files

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

Source Distribution

mentedb_langchain-0.9.1.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

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

mentedb_langchain-0.9.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file mentedb_langchain-0.9.1.tar.gz.

File metadata

  • Download URL: mentedb_langchain-0.9.1.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mentedb_langchain-0.9.1.tar.gz
Algorithm Hash digest
SHA256 ffb349932cdc564090352d575adb08a7365b48d50b8856f62a54eb2adcf9e3d9
MD5 d94e552ab73c7128e0daad1a879e2d8d
BLAKE2b-256 dbf5b8723f487473a39813ed3e0fcfdd7daa3638e56c6a58092115bcecbf5eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mentedb_langchain-0.9.1.tar.gz:

Publisher: publish-sdks.yml on nambok/mentedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mentedb_langchain-0.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mentedb_langchain-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3eec3397574199462b45150331d41b3e531364877fa3756984a716a96a9b29d3
MD5 53209813383dbaa4d709118ef5f1096a
BLAKE2b-256 88e0c2c9a9ce295d39277c1d244a748c320d76e7fc91c04802c8fd58e8e2edf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mentedb_langchain-0.9.1-py3-none-any.whl:

Publisher: publish-sdks.yml on nambok/mentedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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