Skip to main content

How Omium Works

Omium sits between your AI agent framework and the LLM, automatically capturing traces and creating checkpoints for recovery.

Quick Start

Get up and running in 3 steps:

1. Install the SDK

pip install omium

2. Initialize & Instrument

Get your API key from app.omium.ai/api-keys
import omium

# Initialize with your API key
omium.init(api_key="om_xxx")

# Auto-instrument your framework
omium.instrument_langgraph()  # or omium.instrument_crewai()

3. Run Your Workflow

Your existing code works unchanged:
from langgraph.graph import StateGraph

# Your workflow code runs normally
# Omium automatically captures traces and checkpoints
graph = StateGraph(...)
app = graph.compile()
result = app.invoke({"input": "Hello"})
View your execution at app.omium.ai!

Next Steps