-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathmlflow_via_openinference.py
More file actions
63 lines (48 loc) · 2.01 KB
/
mlflow_via_openinference.py
File metadata and controls
63 lines (48 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
MLflow Via OpenInference
========================
Demonstrates instrumenting an Agno agent with OpenInference and sending traces to MLflow.
Requirements:
pip install mlflow opentelemetry-exporter-otlp-proto-http openinference-instrumentation-agno
Start MLflow with OTLP tracing enabled:
mlflow server --host 127.0.0.1 --port 5000
"""
import asyncio
import os
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.yfinance import YFinanceTools
from openinference.instrumentation.agno import AgnoInstrumentor
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.trace.export import SimpleSpanProcessor
# ---------------------------------------------------------------------------
# Setup
# ---------------------------------------------------------------------------
MLFLOW_TRACKING_URI = os.getenv("MLFLOW_TRACKING_URI", "http://127.0.0.1:5000")
endpoint = f"{MLFLOW_TRACKING_URI}/api/2.0/mlflow/traces"
tracer_provider = TracerProvider()
tracer_provider.add_span_processor(
SimpleSpanProcessor(OTLPSpanExporter(endpoint=endpoint))
)
# Start instrumenting agno
AgnoInstrumentor().instrument(tracer_provider=tracer_provider)
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
name="Stock Price Agent",
model=OpenAIChat(id="gpt-4o"),
tools=[YFinanceTools()],
instructions="You are a stock price agent. Answer questions in the style of a stock analyst.",
)
# ---------------------------------------------------------------------------
# Run Example
# ---------------------------------------------------------------------------
async def main() -> None:
await agent.aprint_response(
"What is the current price of Tesla? Then find the current price of NVIDIA",
stream=True,
)
if __name__ == "__main__":
asyncio.run(main())