Metadata-Version: 2.4
Name: satyaki-agent-trace-sdk
Version: 0.1.0
Summary: Lightweight Python SDK for Agent Observability Tracing — instruments multi-agent AI workflows
License: MIT
Keywords: agents,langchain,observability,opentelemetry,tracing
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24.0
Requires-Dist: opentelemetry-api>=1.20.0
Requires-Dist: opentelemetry-sdk>=1.20.0
Provides-Extra: langchain
Requires-Dist: langchain>=0.1.0; extra == 'langchain'
Description-Content-Type: text/markdown

# Agent Trace SDK

Lightweight Python SDK for the Agent Observability Tracing Platform.

## Installation

```bash
pip install agent-trace-sdk
```

## Quick Start

```python
from agent_trace import trace_agent, configure

configure(
    api_endpoint="http://localhost:8000",
    api_key="YOUR_API_KEY",
    project_id="YOUR_PROJECT_SLUG",
)

@trace_agent()
def my_agent(query):
    return f"Response to: {query}"
```
