Skip to main content
This guide assumes you have Python 3.9+ installed. If you don’t have an Omium account yet, sign up here.

Prerequisites


Step 1: Install the SDK

pip install omium
Verify installation with omium --version

Step 2: Initialize Omium

Step 3: Instrument Your Framework

import omium

omium.init(api_key="om_xxx")
omium.instrument_langgraph()

# Your LangGraph code works unchanged
from langgraph.graph import StateGraph

graph = StateGraph(...)
app = graph.compile()
result = app.invoke({"input": "Hello"})

Step 4: View in Dashboard

After running your workflow, all traces and checkpoints appear automatically in the dashboard.
Visit app.omium.ai to see:
  • Executions - All workflow runs with status
  • Traces - Step-by-step execution details
  • Checkpoints - Recovery points for failed runs
  • Replay - Re-run failed executions from checkpoints

What’s Next?