LangGraph Plugin
Requirements
Install
pip install tinyhuman-langgraphQuick Start: Factory Pattern (Recommended)
from langchain_openai import ChatOpenAI
from tinyhuman_langgraph import make_memory_tools
tools = make_memory_tools(token="your-api-key")
# Bind to a model for LLM tool-calling
model = ChatOpenAI(model="gpt-4o").bind_tools(tools)Usage as a LangGraph Node
Environment Variables
Available Tools
Tool
Description
Error Handling
Last updated