Programmable AI Infrastructure SDK
Project description
Voni AI Python SDK
The official Python SDK for the Voniai programmable AI infrastructure.
Installation
pip install voniai
Quick Start (Headless Mode)
from voniai import Voni
# Initialize the client (automatically loads VONI_API_KEY from env)
voni = Voni()
# Send a message to your co-pilot
response = voni.chat.send_message(
project_id="your_project_id",
message="How do I integrate Voni?",
session_id="user_123"
)
print(f"AI Response: {response['message']}")
Features
- Robust Security: Automatic HMAC-SHA256 request signing.
- Environment Support: Automatically loads
VONI_API_KEYfrom environment variables. - Project Management: Create and configure projects programmatically.
- Headless Chat: Interact with the AI engine directly without using the pre-built widget.
- Webhook Management: Register and manage webhooks for event-driven workflows.
Authentication
Voni uses an API Key + HMAC Signature for all requests. The SDK handles this automatically. You can provide your API Key during initialization or set the VONI_API_KEY environment variable.
# Option 1: Load from environment (Recommended)
voni = Voni()
# Option 2: Explicitly provide key
voni = Voni(api_key="...")
Error Handling
from voniai import Voni, VoniAuthError, VoniApiError
try:
projects = voni.projects.list()
except VoniAuthError:
print("Authentication failed. Check your API Key.")
except VoniApiError as e:
print(f"API returned an error: {e.status_code}")
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
voniai-0.1.2.tar.gz
(14.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
voniai-0.1.2-py3-none-any.whl
(20.0 kB
view details)
File details
Details for the file voniai-0.1.2.tar.gz.
File metadata
- Download URL: voniai-0.1.2.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f4b91ec2e6b1c646c5a85e2b4c280f8acd5b2a059e20c96b0b06135b9325d4
|
|
| MD5 |
a591649d5720a9944aa58d0b040ba0ea
|
|
| BLAKE2b-256 |
845ef983446881d299f190da1672fe0e64fabb4f29e517d641c61f865771c8f8
|
File details
Details for the file voniai-0.1.2-py3-none-any.whl.
File metadata
- Download URL: voniai-0.1.2-py3-none-any.whl
- Upload date:
- Size: 20.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a81dbdd170e048901a11c834cfd92ebd250688652838fba3c9aaa5ea664606
|
|
| MD5 |
fb88c803e704e8bc2b45b4952622cf9d
|
|
| BLAKE2b-256 |
08cd0d7444ae5dc8aba484f3846a4cefb35da1a7529d0acb577b5ea20b007c99
|