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:
Compare

Side-by-side framework comparisons

Not sure which framework to use? Our detailed comparison guides help you choose the right tool for your use case.

Ready to build your first AI Agent?

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