langgraph-tools
Installation
SKILL.md
LangGraph Tool Calling
Integrate tool calling into LangGraph workflows.
Basic Tool Binding
from langchain_core.tools import tool
from langchain_anthropic import ChatAnthropic
@tool
def search_database(query: str) -> str:
"""Search the database for information."""
return db.search(query)