Python SDK for HyperCLI - GPU orchestration and LLM API
Project description
HyperCLI SDK
Python SDK for HyperCLI - GPU orchestration API.
Installation
pip install hypercli-sdk
Setup
Set your API key:
export HYPERCLI_API_KEY=your_api_key
Or create ~/.hypercli/config:
HYPERCLI_API_KEY=your_api_key
Or pass directly:
client = HyperCLI(api_key="your_api_key")
Usage
from hypercli import HyperCLI
client = HyperCLI()
# Check balance
balance = client.billing.balance()
print(f"Balance: ${balance.total:.2f}")
print(f"Rewards: ${balance.rewards:.2f}")
# List transactions
for tx in client.billing.transactions(limit=10):
print(f"{tx.transaction_type}: ${tx.amount_usd:.4f}")
# Create a job
job = client.jobs.create(
image="nvidia/cuda:12.0",
command="python train.py",
gpu_type="l40s",
gpu_count=1,
)
print(f"Job ID: {job.job_id}")
print(f"State: {job.state}")
# List jobs
for job in client.jobs.list():
print(f"{job.job_id}: {job.state}")
# Get job details
job = client.jobs.get("job_id")
# Get job logs
logs = client.jobs.logs("job_id")
# Get GPU metrics
metrics = client.jobs.metrics("job_id")
for gpu in metrics.gpus:
print(f"GPU {gpu.index}: {gpu.utilization}% util, {gpu.temperature}°C")
# Cancel a job
client.jobs.cancel("job_id")
# Extend runtime
client.jobs.extend("job_id", runtime=7200)
# Get user info
user = client.user.get()
print(f"User: {user.email}")
LLM API
For LLM access, use the OpenAI SDK with C3's base URL:
from openai import OpenAI
client = OpenAI(
api_key="your_hypercli_api_key",
base_url="https://api.hypercli.com/v1"
)
response = client.chat.completions.create(
model="deepseek-v3.1",
messages=[{"role": "user", "content": "Hello!"}]
)
Error Handling
from hypercli import HyperCLI, APIError
client = HyperCLI()
try:
job = client.jobs.get("invalid_id")
except APIError as e:
print(f"Error {e.status_code}: {e.detail}")
License
MIT
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
hypercli_sdk-1.0.0.tar.gz
(49.4 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
File details
Details for the file hypercli_sdk-1.0.0.tar.gz.
File metadata
- Download URL: hypercli_sdk-1.0.0.tar.gz
- Upload date:
- Size: 49.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65ebb392b9fb19ce3949d32cee664d91bd034d4d8a5575204195aa9464e0cd28
|
|
| MD5 |
9e56a6f07021e4d3f971acedf5d52f16
|
|
| BLAKE2b-256 |
fc8812db72f4e396c46fe50d2ec678f201217ad38dc7d8cff2dae2b5c3fd33e4
|
File details
Details for the file hypercli_sdk-1.0.0-py3-none-any.whl.
File metadata
- Download URL: hypercli_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 48.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ada1cf0dea1684124007a442f78533d11d865488d0166e6b9f7e22b97fe1ad5
|
|
| MD5 |
3b714ab158dc9746cd389ac46b1e2b77
|
|
| BLAKE2b-256 |
11bf05b5cf5bc73cfc8e0f3d1f266d12558f2f12043e798c348626c960bff1a7
|