Metadata-Version: 2.4
Name: voxevolv
Version: 0.2.0
Summary: Python server SDK for the VoxEvolv Voice Session API
Author: VoxEvolv contributors
License-Expression: MIT
Project-URL: Repository, https://github.com/shobhansuri/VoxEvolv
Project-URL: Issues, https://github.com/shobhansuri/VoxEvolv/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# VoxEvolv Python SDK

Server-only Python client for creating and managing VoxEvolv sessions.

```python
import os
from voxevolv import VoxEvolv

client = VoxEvolv(
    api_key=os.environ["VOXEVOLV_API_KEY"],
    base_url=os.environ["VOXEVOLV_API_BASE"],
)
session = client.sessions.create(
    intent_id=interview_session_id,
    profile="live-interviewer",
    participant={"identity": user_id, "display_name": display_name},
    instructions=instructions,
    greeting=greeting,
)

return session.browser_credentials()
```

The SDK derives one deterministic idempotency key from `intent_id`, preserves it
across bounded 429/5xx/network retries, and raises `VoxEvolvError` with typed API
failure information.
