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.8.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.8.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mentedb_langchain-0.8.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.8.1.tar.gz
Algorithm Hash digest
SHA256 a2863c2f5b24ddb61a03cf17242a034ec6aa1c31c8673702112218e79d6938ba
MD5 d9adc3e20c2f5b6edf6a558b5974d368
BLAKE2b-256 0ca365c577dc72d549051096617dd532aab860424914227a336401c40090f084

See more details on using hashes here.

Provenance

The following attestation bundles were made for mentedb_langchain-0.8.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.8.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mentedb_langchain-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 02c4c7f48b2b94fb2ec79fcbb1c4652e6ee03c5a6d65fc39ecb7a098ed1e88b1
MD5 5f97ad54840145b3c3f3282cdc3b4099
BLAKE2b-256 4ff3508f8f1d59c20d4e71d4533fcabbcf4f7cdbc504ba4ebeaa0db34930b63f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mentedb_langchain-0.8.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