opik-connect
Installation
SKILL.md
Opik Connect (Local Runner)
Trigger your agent from the Opik browser UI while it runs locally.
Python
Wrap server endpoints with @track(entrypoint=True):
from fastapi import FastAPI
from opik import track
import uvicorn
app = FastAPI()
@app.get("/echo")
@track(entrypoint=True)
async def echo(message: str = "") -> str:
"""Echo the message back.