Open Source Recipes

The cookbook for
building AI Agents

Tutorials, framework guides, and open-source agent breakdowns — curated and explained, all in one place.

agent_executor.py
from langchain.agents import AgentExecutor

# Initialize your core agent and tools
agent = AgentExecutor(
    agent=agent,
    tools=tools,
    verbose=True
)

# Execute the task
result = agent.invoke({"input": "Analyze the latest market trends"} )
Search

All Recipes

Trending:

Ready to build your first AI Agent?

Start with our beginner-friendly LangChain guide and have your first agent running in under 30 minutes.