Skip to main content
Pre-release

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

signify_ai-0.1.0a2.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

signify_ai-0.1.0a2-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

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

Hashes for signify_ai-0.1.0a2.tar.gz
Algorithm Hash digest
SHA256 c9d1afdf2b9ee303f5c7fcffae9854884e446ae115157833d1a4e74295c1bdf5
MD5 a63f34e8f132399f333b6e4ac029259a
BLAKE2b-256 be3c01e8cdf02566ee451495306856c629c4de9945c55cd428e0006fc68ad4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for signify_ai-0.1.0a2.tar.gz:

Publisher: python-sdk-release.yml on zahemen9900/gsl-tests

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for signify_ai-0.1.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 a9915d30661277a915393cbbed60de3e067006cac85f7c1a1a809240e0291ca0
MD5 aac9488214b24606a57c2bbaad268f76
BLAKE2b-256 5fe2d5fe2c16d8501b5d9fac21f37c6513fe8d7a577da72c04563fc8dea84f92

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page