A Python SDK for Trinity Agent Monitoring API
Project description
Trinity Agent Monitoring SDK
A comprehensive Python SDK for monitoring AI agents with advanced tracing, metrics collection, and observability capabilities powered by Langfuse.
Features
- Comprehensive Agent Monitoring: Track agent execution, tool usage, and performance metrics
- Rich Metrics Collection: Monitor tokens, costs, latency, and tool utilization
- Tool Usage Analytics: Detailed analysis of which tools your agents use and how often
- Easy Integration: Simple decorator-based monitoring with minimal code changes
Installation
pip install trinity-agent-monitoring
Quick Start
1. Initialize the Monitor
from trinity_agent_monitoring import create_monitor, set_monitor
# Create and set up the global monitor
monitor = create_monitor(
public_key="your_trinity_public_key",
secret_key="your_trinity_secret_key"
)
# Set as global monitor for easy access
set_monitor(monitor)
2. Monitor Your Agent
from trinity_agent_monitoring import get_monitor
# Get the global monitor
monitor = get_monitor()
# Use the decorator to monitor your agent
@monitor.monitor_agent(agent_name="my_ai_agent")
def my_agent_function(agent_executor,user_input):
# Your agent logic here
response = process_user_input(user_input)
return response
# Call your monitored function
result = my_agent_function(agent_executor, "Hello, agent!")
3. Instance-based Monitoring
from trinity_agent_monitoring import TrinityAgentMonitor
# Create a dedicated monitor instance
monitor = TrinityAgentMonitor(
public_key="your_public_key",
secret_key="your_secret_key"
)
# Use with your agent
@monitor.monitor_agent("custom_agent")
def custom_agent_function():
# Agent logic
pass
Get Callback Handler for LangChain
# Get the callback handler for LangChain integration
callback_handler = monitor.get_callback_handler()
# Use with your LangChain agent
from langchain.agents import AgentExecutor
from langchain.llms import OpenAI
agent = AgentExecutor.from_agent_and_tools(
agent=your_agent,
tools=your_tools,
callbacks=[callback_handler]
)
API Reference
TrinityAgentMonitor
Main monitoring class that provides comprehensive agent monitoring capabilities.
Utility Functions
create_monitor(public_key, secret_key, host): Create a new monitor instanceget_monitor(): Get the global monitor instanceset_monitor(monitor): Set the global monitor instance
Metrics Collected
The SDK automatically collects the following metrics:
- Token Usage: Input, output, and total tokens
- Cost Analysis: Calculated costs for each operation
- Latency: Start time, end time, and duration
- Tool Usage: Which tools were used and how many times
- Input/Output: Raw input and output data for analysis
- Metadata: Custom metadata for additional context
Support
For support and questions, contact us at support@giggso.com
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 trinity_agent_monitoring-0.2.0.dev1.tar.gz.
File metadata
- Download URL: trinity_agent_monitoring-0.2.0.dev1.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa5928fe741e854018a1a6811a6c97dec9afaa47a2a5d40805e2f46a03f9500d
|
|
| MD5 |
e29d3f90ee038ace154608cecc055efd
|
|
| BLAKE2b-256 |
42a7d778f031251de00ccd501a6eb17aca179ba9cbf09f4109fc1b86aa66ccfa
|
File details
Details for the file trinity_agent_monitoring-0.2.0.dev1-py3-none-any.whl.
File metadata
- Download URL: trinity_agent_monitoring-0.2.0.dev1-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae3988965a7ada0a9cb85ccc4cfa012637d6eca15474b8219326cc2039b16c8f
|
|
| MD5 |
89fc9bd751d442a6322733b1dfb7ecbe
|
|
| BLAKE2b-256 |
a478eb9d659b1c040528ee464114af332fa27a722a22a94461bf6d1617e71cb9
|