Metadata-Version: 2.4
Name: voicegate
Version: 0.1.2
Summary: Python SDK for VoiceGate — voice infrastructure for AI agents, with KYA agent identity (by CallsFlow Ltd)
Author: CallsFlow Ltd
License: MIT
Project-URL: Homepage, https://aivoicegate.com
Project-URL: Repository, https://github.com/CallsFlow/voicegate-sdk
Keywords: ai agents,voice api,telephony,verifiable credentials,erc-8004,kya,voicegate
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28
Requires-Dist: cryptography>=41

# voicegate (Python)

Python SDK for [VoiceGate](https://aivoicegate.com) — voice infrastructure for AI agents, with KYA agent identity (by CallsFlow Ltd).

```bash
pip install voicegate
```

```python
from voicegate import VoiceGate, AgentKey

vg = VoiceGate(kya_url="https://aivoicegate.com")
key = AgentKey.generate()
reg = vg.kya_register(key, operator_email="ops@your-company.com", domain="your-agent.com")
credential = vg.kya_get_credential(key, reg["agent_id"])
vg.kya_login(key, credential)
print(vg.me())
```

Full docs and the voice-call quick start: see the [repository README](../README.md).
Runnable examples: [`examples/`](examples).

Requires Python 3.9+. Depends on `requests` and `cryptography`.
