AI agent observability SDK — see exactly why your agent failed, in 30 seconds.
Project description
vorlo-trace
"LangSmith tells you what your agent did. Langfuse shows you where it happened. Vorlo tells you exactly WHY it failed and what to fix — in 30 seconds."
AI agent observability SDK. Add 2 lines of code to see exactly which step of your agent failed, the plain-English root cause, and a specific fix hint.
Quick Start
pip install vorlo-trace
import vorlo_trace
from langchain.agents import create_tool_calling_agent, AgentExecutor
# 1. Initialize Vorlo (or set VORLO_API_KEY env var)
vorlo_trace.init(api_key="vrlo_your_key_here", agent_name="my-agent")
# 2. Add the handler to your agent
handler = vorlo_trace.get_handler()
result = agent_executor.invoke(
{"input": "Check my latest emails"},
config={"callbacks": [handler]}
)
That's it. Open vorlo.dev to see every step your agent took, with:
- Step Replay — chronological view of every tool call
- Root Cause — plain English explanation, not raw HTTP errors
- Fix Hints — specific, actionable steps to resolve the issue
- LLM Reasoning — why the agent made each decision
What You See
Without Vorlo:
ToolError: 403
With Vorlo:
Stripe token expired after retry chain caused stale auth context.
Your Stripe OAuth token was issued 23h ago — Stripe tokens expire at 24h.
Fix: Reconnect your Stripe account in Settings → Integrations.
How It Works
Vorlo wraps your agent's callback system. It captures:
- Every tool call (input, output, latency)
- Every LLM reasoning step (chain of thought)
- Every error (translated to plain English with fix hints)
- Cross-step context (what data flowed between steps)
All sends are fire-and-forget — Vorlo never slows or crashes your agent, even if the Vorlo server is unreachable.
Features
- 2-line integration — works with any LangChain agent
- Sensor/Actuator classification — reads vs writes, clearly labeled
- Cross-step root cause — understands data flow between steps
- OTel-compatible — trace_id, span_id for enterprise export
- Zero impact — async sends, daemon threads, silent failures
Configuration
vorlo_trace.init(
api_key="vrlo_...", # or set VORLO_API_KEY env var
server_url="https://...", # or set VORLO_SERVER_URL env var
agent_name="order-processor", # shown in dashboard
verify_ssl=True, # or set VORLO_VERIFY_SSL=false for local proxy testing
)
Environment Variables
| Variable | Description |
|---|---|
VORLO_API_KEY |
Your Vorlo API key |
VORLO_SERVER_URL |
Custom server URL (default: production) |
VORLO_VERIFY_SSL |
Set to false only for local corporate proxy testing |
VORLO_DEBUG |
Set to 1 for debug logging to stderr |
License
MIT — see LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vorlo_trace-0.1.0.tar.gz.
File metadata
- Download URL: vorlo_trace-0.1.0.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fffe6e4368c0ee42794704856e0701bfe7dfe3cc3903344a73a4dd3d689572e
|
|
| MD5 |
a0bcb4ce3db12abd5f391756dc24877c
|
|
| BLAKE2b-256 |
0c1ab329dd16d65dbe0ebbcf66648a06fb6945760519aebb163675a7665a3d9d
|
File details
Details for the file vorlo_trace-0.1.0-py3-none-any.whl.
File metadata
- Download URL: vorlo_trace-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c9eb3a110fd65aacb9789f3883396bebb1f180db848508afd108c42fa12dcc0
|
|
| MD5 |
4e4b1e72397fd4c06f418719ef7c7374
|
|
| BLAKE2b-256 |
93349b7c9a6233fea33703f0dbdcabbd1ab71eeed19f907030de718289ec8d83
|