Integrate Atla with Agno for real-time monitoring, automated evaluation, and performance analytics of your AI agents.
Atla is an advanced observability platform designed specifically for AI agent monitoring and evaluation.
This integration provides comprehensive insights into agent performance, automated quality assessment, and detailed analytics for production AI systems.
from os import getenvfrom agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.tools.duckduckgo import DuckDuckGoToolsfrom atla_insights import configure, instrument_agno# Step 1: Configure Atlaconfigure(token=getenv("ATLA_API_KEY"))# Step 2: Create your Agno agentagent = Agent( name="Market Analysis Agent", model=OpenAIChat(id="gpt-4o-mini"), tools=[DuckDuckGoTools()], instructions="Provide professional market analysis with data-driven insights.", debug_mode=True,)# Step 3: Instrument and executewith instrument_agno("openai"): response = agent.run("Retrieve the latest news about the stock market.") print(response.content)
Now go to the Atla dashboard and view the traces created by your agent. You can visualize the execution flow, monitor performance, and debug issues directly from the Atla dashboard.