Metadata-Version: 2.4
Name: agentops-sdk
Version: 0.1.2
Summary: LLM Observability and Evaluation SDK
Author: Sohan Patnaik
License: MIT
Keywords: llm,observability,agent,rag,evaluation,ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Requires-Dist: opentelemetry-api>=1.24.0
Dynamic: license-file

# AgentOps SDK

Monitor and evaluate LLM applications.

## Installation

```bash
pip install agentops-sdk
```

## Example

```python
from agentops import AgentOps

client = AgentOps(
    api_key="YOUR_KEY"
)

client.monitor(...)
client.evaluate(...)
```
