Official Python SDK for the Hakim voice AI API (TTS, STT, voice cloning, webhooks, jobs).
Project description
hakim — official Python SDK
Official Python SDK for Hakim — Arabic-first TTS,
STT, voice cloning, webhooks, and batch jobs. Mirrors the surface of the
Node SDK (@hakim/voice).
Install
pip install hakim
Quick start (async)
import asyncio
from hakim import AsyncHakim
async def main() -> None:
async with AsyncHakim(api_key="hk_...") as hakim:
audio = await hakim.audio.speech.create(
model="hakim-fast-v1",
input="مرحبا بالعالم",
voice="omar",
)
with open("out.mp3", "wb") as f:
f.write(audio)
asyncio.run(main())
Quick start (sync)
from hakim import Hakim
with Hakim(api_key="hk_...") as hakim:
audio = hakim.tts_create(
model="hakim-fast-v1",
input="مرحبا بالعالم",
voice="omar",
)
Chat completions
OpenAI-compatible chat API backed by hakim-chat-v1 (HKM LLM 1).
Drop-in for any code that targets the OpenAI Chat Completions
reference — swap the base URL and key and you're done.
async with AsyncHakim(api_key="hk_...") as hakim:
# Non-streaming.
completion = await hakim.chat.completions.create(
model="hakim-chat-v1",
messages=[
{"role": "system", "content": "أنت مساعد عربي مفيد."},
{"role": "user", "content": "اكتب قصيدة قصيرة عن البحر."},
],
temperature=0.7,
)
print(completion["choices"][0]["message"]["content"])
# Streaming (SSE). The final chunk carries the rolled-up `usage`.
stream = await hakim.chat.completions.stream(
model="hakim-chat-v1",
messages=[{"role": "user", "content": "مرحبا!"}],
)
async for chunk in stream:
delta = chunk["choices"][0]["delta"]
if "content" in delta:
print(delta["content"], end="", flush=True)
Reasoning / chain-of-thought
hakim-chat-v1 is a thinking-capable model. CoT is off by
default — it adds 10–50× latency and burns completion tokens
that don't reach your UI in time. Opt in on non-streaming
requests only:
completion = await hakim.chat.completions.create(
model="hakim-chat-v1",
messages=[{"role": "user", "content": "حلّ ٢٤ × ١٧ خطوة بخطوة."}],
reasoning={"enabled": True},
)
print(completion["choices"][0]["message"]["reasoning"]) # chain-of-thought
print(completion["choices"][0]["message"]["content"]) # final answer
Streaming requests with reasoning={"enabled": True} are rejected
with a 400 invalid_request_error — real-time agents cannot afford
the latency cost. The stream() method intentionally omits the
reasoning parameter so a misuse fails at edit time rather than
on the wire.
Streaming TTS
async with AsyncHakim(api_key="hk_...") as hakim:
stream = await hakim.audio.speech.stream(
model="hakim-fast-v1",
input="salam",
voice="omar",
)
async for chunk in stream:
write_to_speaker(chunk)
Speech-to-text (sync upload)
async with AsyncHakim(api_key="hk_...") as hakim:
result = await hakim.audio.transcriptions.create(
file=open("clip.wav", "rb"),
model="hakim-arab-v2",
response_format="json",
)
print(result["text"])
Speech-to-text (realtime)
async with AsyncHakim(api_key="hk_...") as hakim:
async with hakim.audio.transcriptions.stream(
model="hakim-arab-v2",
language="ar",
sample_rate=16000,
) as handle:
async def pump_audio() -> None:
async for chunk in mic_iter():
await handle.send_audio(chunk)
await handle.commit()
asyncio.create_task(pump_audio())
async for event in handle:
if event["type"] == "partial":
print("~", event["text"])
elif event["type"] == "final":
print("✔", event["text"])
Voice cloning
with open("my_voice.wav", "rb") as f:
voice = await hakim.voices.create(
sample=f,
name="My Voice",
language="ar",
consent_confirmed=True,
)
while voice["status"] == "processing":
await asyncio.sleep(2.0)
voice = await hakim.voices.retrieve(voice["id"])
Webhooks
from hakim import verify_webhook_signature
def handle_webhook(request) -> None:
body = request.body
result = verify_webhook_signature(
secret="whsec_...",
body=body,
signature=request.headers["hakim-signature"],
)
if not result.valid:
raise ValueError(f"bad signature: {result.reason}")
event = json.loads(body)
...
Errors
Every HTTP-level failure raises a :class:HakimError subclass you can
branch on:
from hakim import Hakim, RateLimitError, HakimError
try:
hakim.tts_create(...)
except RateLimitError as err:
retry_after = (err.retry_after_ms or 1000) / 1000
time.sleep(retry_after)
except HakimError as err:
print(err.status, err.code, err.request_id)
Observability
Every request auto-attaches:
Authorization: Bearer <api_key>User-Agent: hakim-python/<version> (python/<py_version>; <platform>)X-Request-Id: sdk-<uuid>(echoed back by the server — attach to your logs for end-to-end tracing).Idempotency-Key: <uuid>on mutating JSON calls (auto-generated; override viaidempotency_key=when you need deterministic keys).
Transient failures (5xx, 429, 408, 425, network errors) are retried
with exponential back-off (±25% jitter) up to max_retries (default
2). Retry-After is honoured when the server sends it.
Development
pip install -e '.[dev]'
ruff check src tests
mypy src
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file hakim-1.0.0.tar.gz.
File metadata
- Download URL: hakim-1.0.0.tar.gz
- Upload date:
- Size: 42.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b04d91b8e382987fa19f818d2319b8aa7f1ac76ee2233366fdd0e260226e7367
|
|
| MD5 |
23c953483f8ed5544799396af55e6a9b
|
|
| BLAKE2b-256 |
e4cce66930e17fa6ee53fa0808d53c0f9c49d17461e3d2c5278d5f9b029b4094
|
Provenance
The following attestation bundles were made for hakim-1.0.0.tar.gz:
Publisher:
publish-pypi.yml on tryHakimAI/hakim-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hakim-1.0.0.tar.gz -
Subject digest:
b04d91b8e382987fa19f818d2319b8aa7f1ac76ee2233366fdd0e260226e7367 - Sigstore transparency entry: 2161012190
- Sigstore integration time:
-
Permalink:
tryHakimAI/hakim-python@77b722ba0fdc64c667abdc42895ed80186257ba7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tryHakimAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@77b722ba0fdc64c667abdc42895ed80186257ba7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file hakim-1.0.0-py3-none-any.whl.
File metadata
- Download URL: hakim-1.0.0-py3-none-any.whl
- Upload date:
- Size: 42.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c9aa4e387a95ae6898ab7607e6add03e0c379392c07455cb95cb9425ff19edd
|
|
| MD5 |
5a9668af75b0d83036f43556e20269c9
|
|
| BLAKE2b-256 |
cc9f889a37a7719e81a7b5e040632ac0a8fcd53664b98f9cc7ea2fe408943926
|
Provenance
The following attestation bundles were made for hakim-1.0.0-py3-none-any.whl:
Publisher:
publish-pypi.yml on tryHakimAI/hakim-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hakim-1.0.0-py3-none-any.whl -
Subject digest:
6c9aa4e387a95ae6898ab7607e6add03e0c379392c07455cb95cb9425ff19edd - Sigstore transparency entry: 2161012802
- Sigstore integration time:
-
Permalink:
tryHakimAI/hakim-python@77b722ba0fdc64c667abdc42895ed80186257ba7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tryHakimAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@77b722ba0fdc64c667abdc42895ed80186257ba7 -
Trigger Event:
workflow_dispatch
-
Statement type: