Metadata-Version: 2.4
Name: use-lightcurve
Version: 0.2.3
Summary: Observability and evaluation SDK for LLM Agents
Home-page: https://github.com/uselightcurve/lightcurve-sdk
Author: Lightcurve Team
Author-email: founders@lightcurve.ai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Requires-Dist: python-dotenv>=0.10.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# use-lightcurve

The official Python SDK for Lightcurve, the observability and evaluation platform for LLM Agents.

## Installation

```bash
pip install use-lightcurve
```

## Quick Start

```python
from lightcurve import Lightcurve

lc = Lightcurve(api_key="your_api_key")

# Track a run
with lc.trace(agent_id="my-agent") as run:
    result = my_agent.run("input prompt")
    run.log_output(result)
```
