--- source: ⚠️ Jupyter Notebook title: Observability for Agno with Langfuse sidebarTitle: Agno logo: /images/integrations/agno_icon.jpg description: Learn how to integrate Langfuse with Agno via OpenTelemetry category: Integrations --- # Integrate Langfuse with Agno This notebook demonstrates how to integrate **Langfuse** with **Agno** using OpenTelemetry via the **OpenLIT** instrumentation. By the end of this notebook, you will be able to trace your Agno applications with Langfuse for improved observability and debugging. > **What is Agno?** [Agno](https://docs.agno.com/) is a platform for building and managing AI agents. > **What is Langfuse?** [Langfuse](https://langfuse.com) is an open-source LLM engineering platform. It provides tracing and monitoring capabilities for LLM applications, helping developers debug, analyze, and optimize their AI systems. Langfuse integrates with various tools and frameworks via native integrations, OpenTelemetry, and API/SDKs. ## Get Started We'll walk through examples of using Agno and integrating it with Langfuse. ### Step 1: Install Dependencies ```python %pip install agno openai langfuse yfinance openlit ``` ### Step 2: Set Up Environment Variables Get your Langfuse API keys by signing up for [Langfuse Cloud](https://cloud.langfuse.com) or [self-hosting Langfuse](https://langfuse.com/self-hosting). You'll also need your OpenAI API key. ```python import os # Get keys for your project from the project settings page: https://cloud.langfuse.com os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-..." os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-..." os.environ["LANGFUSE_BASE_URL"] = "https://cloud.langfuse.com" # πŸ‡ͺπŸ‡Ί EU region # Other Langfuse data regions include πŸ‡ΊπŸ‡Έ US: https://us.cloud.langfuse.com, πŸ‡―πŸ‡΅ Japan: https://jp.cloud.langfuse.com and βš•οΈ HIPAA: https://hipaa.cloud.langfuse.com # your openai key os.environ["OPENAI_API_KEY"] = "sk-proj-..." ``` With the environment variables set, we can now initialize the Langfuse client. `get_client()` initializes the Langfuse client using the credentials provided in the environment variables. ```python from langfuse import get_client langfuse = get_client() # Verify connection if langfuse.auth_check(): print("Langfuse client is authenticated and ready!") else: print("Authentication failed. Please check your credentials and host.") ``` ### Step 3: Sending Traces to Langfuse This example demonstrates how to use the OpenLit instrumentation library to ingfe ```python from agno.agent import Agent from agno.models.openai import OpenAIChat from agno.tools.duckduckgo import DuckDuckGoTools # Initialize OpenLIT instrumentation import openlit openlit.init(tracer=langfuse._otel_tracer, disable_batch=True) # Create and configure the agent agent = Agent( model=OpenAIChat(id="gpt-4o-mini"), tools=[DuckDuckGoTools()], markdown=True, debug_mode=True, ) # Use the agent agent.print_response("What is currently trending on Twitter?") ``` ### Step 4: See Traces in Langfuse After running the agent examples above, you can view the traces generated by your Agno agent in Langfuse. ![Agno Agents OpenLit Instrumentation](https://langfuse.com/images/cookbook/integration-agno-agents/agno-agents-openlit.png) [Example trace in Langfuse](https://cloud.langfuse.com/project/cloramnkj0002jz088vzn1ja4/traces/080130871f53145aecf7c29d5dfb6e4c?timestamp=2025-06-11T14:01:32.598Z&display=details) import LearnMore from "@/components-mdx/integration-learn-more.mdx";