Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 475 Bytes

File metadata and controls

21 lines (16 loc) · 475 Bytes

Python SDK

pip install tinyhumans
from tinyhumans import TinyHumansClient

client = TinyHumansClient(
    base_url="https://api.tinyhumans.ai",
    token="...",
)

print(client.auth.get("/me"))
print(client.inference.get("/v1/models"))

The Python SDK is dependency-free for the first scaffold and uses the standard library urllib stack. It exposes the same namespace clients as the TypeScript SDK plus client.raw for newly deployed routes.