This release is a pre-release and may not be stable for production use.
Signify AI Python SDK
Experimental Python client for the hosted Signify Ghanaian Sign Language API.
pip install --pre signify-ai
export SIGNIFY_API_KEY="your-api-key"
Create and revoke scoped keys from the Signify dashboard after accepting the current Terms and Privacy Notice. A newly created secret is shown once. Store it in a secret manager or local environment variable; it cannot be retrieved later.
from signify_ai import Signify
with Signify() as client:
result = client.text_to_sign.generate(text="Good morning")
print(result.pose_format, result.duration_seconds)
Async usage:
from signify_ai import AsyncSignify
async with AsyncSignify() as client:
result = await client.text_to_sign.generate(text="Welcome")
Streaming does not buffer the full motion:
with Signify() as client:
with client.text_to_sign.stream(text="Good morning") as chunks:
for chunk in chunks:
print(chunk.index, chunk.start_frame, chunk.end_frame)
Sign-to-text accepts finite frame vectors and explicit metadata:
translation = client.sign_to_text.translate(
frames=frames,
fps=30.0,
pose_format="mediapipe540",
)
The constructor argument takes precedence over SIGNIFY_API_KEY. Both sync and
async clients support custom base_url, timeout, retry count, and httpx
transport values for testing. POST retries require an idempotency key; generated
SDK operations create one automatically. Rate-limit responses respect
Retry-After and expose request_id on typed exceptions.
from signify_ai import RateLimitError, Signify, SignifyError
try:
result = Signify(timeout=45.0, max_retries=2).text_to_sign.generate(
text="Good morning",
idempotency_key="your-stable-request-uuid",
)
except RateLimitError as exc:
print(exc.code, exc.request_id, exc.retryable)
except SignifyError as exc:
print(exc.code, exc.request_id)
The service returns RateLimit-Limit, RateLimit-Remaining, and
RateLimit-Reset where applicable, plus Retry-After when a request can be
retried. The public alpha has conservative request, daily quota, and concurrent
inference limits because the current hosted worker is CPU-bound.
Core results are immutable Python values. Install signify-ai[numpy] and call
result.to_numpy() for a float32 array.
Versioning and data use
The SDK version, Signify-API-Version, hosted model version, and pose-schema
version are independent. This alpha sends API contract version 2026-08-07.
Capability responses report the effective hosted data-use policy. Public-alpha
payloads may be retained for safety, evaluation, debugging, and model improvement
under the Signify Terms and Privacy Notice. Contracted organization opt-out is
server-enforced; an SDK flag cannot override organization policy.
Raw payload-improvement storage and unrestricted onboarding are disabled for this release candidate until the legal notices, retention schedule, deletion workflow, and governed encrypted store are approved. Operational usage metadata does not include raw prompts, pose arrays, outputs, or API-key secrets. To make safe idempotent retries possible, the hosted API keeps an encrypted response replay entry for a bounded period (24 hours by default); this is separate from usage events and is automatically expired.
This client is alpha software. Compatibility may change before 1.0. Handle
SignifyError subclasses and pin versions for production experiments.
Security
Never commit API keys. Rotate a key immediately if it is exposed. Report security
issues privately to zahemen9900@gmail.com; do not open a public exploit issue.
License boundary
Apache-2.0 covers only this SDK client. Use of the hosted API is governed by the Signify Terms of Service. This package grants no model license, model weights, inference implementation, trademark rights, licensed avatar/reconstruction assets, or proprietary server rights.
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 signify_ai-0.1.0a2.tar.gz.
File metadata
- Download URL: signify_ai-0.1.0a2.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9d1afdf2b9ee303f5c7fcffae9854884e446ae115157833d1a4e74295c1bdf5
|
|
| MD5 |
a63f34e8f132399f333b6e4ac029259a
|
|
| BLAKE2b-256 |
be3c01e8cdf02566ee451495306856c629c4de9945c55cd428e0006fc68ad4e8
|
Provenance
The following attestation bundles were made for signify_ai-0.1.0a2.tar.gz:
Publisher:
python-sdk-release.yml on zahemen9900/gsl-tests
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
signify_ai-0.1.0a2.tar.gz -
Subject digest:
c9d1afdf2b9ee303f5c7fcffae9854884e446ae115157833d1a4e74295c1bdf5 - Sigstore transparency entry: 2387726940
- Sigstore integration time:
-
Permalink:
zahemen9900/gsl-tests@4e1e243c55ecb7413083a20fa801af967d4df212 -
Branch / Tag:
refs/heads/enhancements - Owner: https://github.com/zahemen9900
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sdk-release.yml@4e1e243c55ecb7413083a20fa801af967d4df212 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file signify_ai-0.1.0a2-py3-none-any.whl.
File metadata
- Download URL: signify_ai-0.1.0a2-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9915d30661277a915393cbbed60de3e067006cac85f7c1a1a809240e0291ca0
|
|
| MD5 |
aac9488214b24606a57c2bbaad268f76
|
|
| BLAKE2b-256 |
5fe2d5fe2c16d8501b5d9fac21f37c6513fe8d7a577da72c04563fc8dea84f92
|
Provenance
The following attestation bundles were made for signify_ai-0.1.0a2-py3-none-any.whl:
Publisher:
python-sdk-release.yml on zahemen9900/gsl-tests
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
signify_ai-0.1.0a2-py3-none-any.whl -
Subject digest:
a9915d30661277a915393cbbed60de3e067006cac85f7c1a1a809240e0291ca0 - Sigstore transparency entry: 2387726942
- Sigstore integration time:
-
Permalink:
zahemen9900/gsl-tests@4e1e243c55ecb7413083a20fa801af967d4df212 -
Branch / Tag:
refs/heads/enhancements - Owner: https://github.com/zahemen9900
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sdk-release.yml@4e1e243c55ecb7413083a20fa801af967d4df212 -
Trigger Event:
workflow_dispatch
-
Statement type: