Metadata-Version: 2.5
Name: parlot
Version: 0.1.0
Summary: Parlot: OpenTelemetry-native observability for AI agents
Project-URL: Homepage, https://parlot.ai
Project-URL: Documentation, https://parlot.ai/docs
Project-URL: Repository, https://github.com/parlot-ai/sdk
Author-email: Parlot AI <hi@parlot.ai>
License-Expression: MIT
License-File: LICENSE
Keywords: agents,ai,observability,opentelemetry,parlot,telemetry
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.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.11
Requires-Dist: parlot-core>=0.1.0
Provides-Extra: all
Requires-Dist: parlot-instrumentation-langgraph>=0.1.0; extra == 'all'
Requires-Dist: parlot-instrumentation-livekit>=0.1.0; extra == 'all'
Provides-Extra: langgraph
Requires-Dist: parlot-instrumentation-langgraph>=0.1.0; extra == 'langgraph'
Provides-Extra: livekit
Requires-Dist: parlot-instrumentation-livekit>=0.1.0; extra == 'livekit'
Description-Content-Type: text/markdown

# Parlot

OpenTelemetry-native observability and telemetry for voice and multimodal AI agents.

## Quick Start

Install Parlot with the extra for your agent framework:

```bash
# For LiveKit Agents
pip install "parlot[livekit]"

# For LangGraph / LangChain Agents
pip install "parlot[langgraph]"

# For all supported integrations
pip install "parlot[all]"
```

Or install the specific instrumentation package directly:

```bash
pip install parlot-instrumentation-livekit
# or
pip install parlot-instrumentation-langgraph
```

## Documentation

Full documentation, guides, and API references are available at [parlot.ai/docs](https://parlot.ai/docs).
