Introduction
AgentSight is a conversation tracking and analytics platform built to provide your clients with access to their conversational AI data, including dashboards, transcripts, analytics overviews and more.
Unlike traditional observability platforms built for developers, AgentSight focuses on client visibility and meaningful insights, not just logs or traces.
Besides the client-facing platform, you also get a fully managed database backend for your conversational AI, so you do not need to build or maintain any infrastructure or dashboards, which lets you focus on your AI.
The Python SDK makes this integration possible. You will be sending your metrics and tracking in just a few lines of code.
Visit the landing page for more information.
What It's Used For
AgentSight’s core purpose is to help you share real-time conversation data, transcripts, and analytics directly with your clients.
Clients gain direct access to:
- Conversation transcripts - see exactly how users interact
- Usage analytics - engagement trends, token usage, performance metrics
- Custom reports - build reports based on filters, metrics, timeframes
- Data export - download or integrate the raw data for internal use
This transforms your offering from just building AI solutions to delivering a full, data-driven platform your clients can actively use.
Comparison with Observability Platforms
| Feature | AgentSight | Langfuse | Phoenix Arize |
|---|---|---|---|
| Primary Focus | Conversation analytics & client dashboards | AI Observability | LLM tracing, evaluation |
| Designed For | Clients & End Users | Developers | Developers |
| Client Dashboard Access | ✅ | ❌ | ❌ |
| Actionable performance reports | ✅ | ❌ | ❌ |
| Conversation analytics dashboard | ✅ | ❌ | ❌ |
| Shareable Transcripts | ✅ | ❌ | ❌ |
| White-Label Support | ✅ | ❌ | ❌ |
| Usage Metrics Tracking | ✅ | ❌ | ❌ |
| Usage Analytics & Reports | ✅ | ❌ | ❌ |
| Automatic Token & Cost Tracking | ✅ | ✅ | ✅ |
| Raw Trace Data via API | ✅ | ✅ | ✅ |
| Trace Debugging UI¹ | ❌ | ✅ | ✅ |
| Data Export | ✅ | ✅ | ✅ |
¹ AgentSight records complete OpenTelemetry spans and makes them readable through its API, but its dashboards are built for client visibility, not internal debugging.
AgentSight complements observability platforms. It’s not built for debugging, but for giving clients insight into their own AI systems and providing developers a simple database and API for conversation persistence.
Installation
pip install agentsight
Or with your package manager of choice — poetry add agentsight, uv add agentsight.
Quick start
Track complete conversations in a few lines of code:
import agentsight
agentsight.init(api_key="ags_...") # or set AGENTSIGHT_API_KEY
with agentsight.conversation("your_conversation_id"):
with agentsight.turn():
agentsight.user_message("What's the weather like today?")
reply = my_agent.run(...) # token usage, cost and tool calls captured automatically
agentsight.agent_message(reply)
Sending happens in the background — there is nothing to flush in a long-running service. LLM calls made through OpenAI, Anthropic, LangChain or LlamaIndex inside a turn are captured without any extra code, and agentsight.upload_attachments(...) delivers files shared in the conversation.
Learn More
Visit the docs to learn more: docs
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 agentsight-0.1.1.tar.gz.
File metadata
- Download URL: agentsight-0.1.1.tar.gz
- Upload date:
- Size: 137.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
057c1e09a2ff87e644d84e738df0df9aeb45f1a24cb70358d91b2c6b47a80268
|
|
| MD5 |
65003a4450eab43838e02d27eeb659ed
|
|
| BLAKE2b-256 |
79d9666e05ba179ca338e7b6aa48ea2dd3ea1910d426d929d26745a0792e3482
|
File details
Details for the file agentsight-0.1.1-py3-none-any.whl.
File metadata
- Download URL: agentsight-0.1.1-py3-none-any.whl
- Upload date:
- Size: 148.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c03516c3b62689da09e8020afa4a42ea2ee02995a3d45d0a8eab089adb9917c4
|
|
| MD5 |
0fbc3931beccf7086d66d618d0ca528b
|
|
| BLAKE2b-256 |
613f73b3b9eab1c8519243007708c622d0ca02d0a89404b79ac180153268b378
|