import { Activity, Brain, DollarSign, ArrowRight, CheckCircle2, GitBranch, Cpu, Zap, Terminal, Code2, Eye, Package, Link2, Bot, Star, Clipboard, } from "lucide-react"; export default function HomePage() { return (
See why your AI agents make the decisions they make.
Complete observability for multi-agent systems.
pip install vectry-agentlens
From decision trees to cost intelligence, get complete visibility into how your AI systems operate
Visualize the complete reasoning behind every agent choice. See the branching logic, alternatives considered, and the path chosen.
Monitor context window utilization in real-time. Track what's being fed into your agents and what's being left behind.
Track spending per decision, per agent, per trace. Get granular insights into where every dollar goes in your AI operations.
Go from zero to full agent observability in under five minutes
One command to add AgentLens to your project.
pip install vectry-agentlens
Add the @trace decorator or use wrap_openai().
@trace
/
wrap_openai()
See every decision in the real-time dashboard.
agentlens.vectry.tech
Our Python SDK integrates seamlessly with LangChain, OpenAI, and custom agents. Add observability without changing your architecture.
from{" "}
agentlens{" "}
import{" "}
init
,{" "}
trace
{"\n"}
{"\n"}
# Initialize AgentLens
{"\n"}
init
(
{"\n"}
{" "}
api_key
=
"your-api-key"
,
{"\n"}
{" "}
endpoint
=
"https://agentlens.vectry.tech"
{"\n"}
)
{"\n"}
{"\n"}
# Trace your agent function
{"\n"}
@trace
(
name
=
"research-agent"
)
{"\n"}
async{" "}
def{" "}
research
(
topic
:{" "}
str
):
{"\n"}
{" "}
# Your agent logic here
{"\n"}
{" "}
return{" "}
f"Researching: {"{topic}"}"
from{" "}
agentlens.integrations.openai{" "}
import{" "}
wrap_openai
{"\n"}
import{" "}
openai
{"\n"}
{"\n"}
# Wrap the OpenAI client
{"\n"}
client{" "}
={" "}
openai.
OpenAI
()
{"\n"}
client{" "}
={" "}
wrap_openai
(client)
{"\n"}
{"\n"}
# Use as normal - traces automatically
{"\n"}
response{" "}
={" "}
client.chat.completions.
create
(
{"\n"}
{" "}
model
=
"gpt-4"
,
{"\n"}
{" "}
messages
=
[
{"{"}
"role"
:{" "}
"user"
,{" "}
"content"
:{" "}
"Hello!"
{"}"}
]
{"\n"}
)
First-class support for the most popular AI frameworks. Drop in and start tracing.
GPT-4, GPT-3.5, o1
wrap_openai()Chains, Agents, Tools
Auto-instrumentedAny Python agent
@trace decorator