Integrations
BeeAI
Trace IBM BeeAI ReAct agents in Muster via the OpenInference instrumentation.
BeeAI (formerly Bee Agent Framework) is IBM's open-source framework for building agents. Muster captures BeeAI runs through the OpenInference instrumentation.
Setup
%pip install beeai-framework langfuse openinference-instrumentation-beeaiimport os
os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-..."
os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-..."
os.environ["LANGFUSE_BASE_URL"] = "https://app.getmuster.io"
os.environ["OPENAI_API_KEY"] = "sk-proj-..."from langfuse import get_client
langfuse = get_client()Instrument BeeAI
from openinference.instrumentation.beeai import BeeAIInstrumentor
BeeAIInstrumentor().instrument()Run an agent
from beeai_framework.agents.react import ReActAgent
from beeai_framework.memory import TokenMemory
agent = ReActAgent(llm=llm, tools=tools, memory=TokenMemory(llm))
response = await agent.run(prompt="Tell me about Muster")Conversations, tool calls, LLM interactions, and performance metrics flow to Muster automatically.