Metadata-Version: 2.4
Name: dottle-sdk
Version: 0.1.1
Summary: Dottle SDK — Instrument your AI agents in 3 lines of code. See every LLM call, tool, cost, and failure in real time.
Project-URL: Homepage, https://dottle.dev
Project-URL: Docs, https://dottle.dev/docs
Project-URL: Repository, https://github.com/abhinawagoo/dottle
Project-URL: Bug Tracker, https://github.com/abhinawagoo/dottle/issues
Author-email: Dottle <support@dottle.dev>
License: MIT
Keywords: agents,ai,anthropic,llm,monitoring,observability,openai,tracing
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Description-Content-Type: text/markdown

# Dottle Python SDK

Instrument your AI agents in 3 lines of code.

```bash
pip install dottle
```

```python
import dottle

dottle.configure(api_key="dtl_live_...", api_url="http://localhost:8000/api/v1")

with dottle.session("my-agent") as sid:
    with dottle.span("llm", "gpt-4o call") as s:
        s.record_tokens(512, 128, "gpt-4o")
```
