Skip to main content

Python SDK for Compute3 - GPU orchestration and LLM API

Project description

C3 SDK

Python SDK for Compute3 - GPU orchestration API.

Installation

pip install c3-sdk

Setup

Set your API key:

export C3_API_KEY=your_api_key

Or create ~/.c3/config:

C3_API_KEY=your_api_key

Or pass directly:

c3 = C3(api_key="your_api_key")

Usage

from c3 import C3

c3 = C3()

# Check balance
balance = c3.billing.balance()
print(f"Balance: ${balance.total:.2f}")
print(f"Rewards: ${balance.rewards:.2f}")

# List transactions
for tx in c3.billing.transactions(limit=10):
    print(f"{tx.transaction_type}: ${tx.amount_usd:.4f}")

# Create a job
job = c3.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 c3.jobs.list():
    print(f"{job.job_id}: {job.state}")

# Get job details
job = c3.jobs.get("job_id")

# Get job logs
logs = c3.jobs.logs("job_id")

# Get GPU metrics
metrics = c3.jobs.metrics("job_id")
for gpu in metrics.gpus:
    print(f"GPU {gpu.index}: {gpu.utilization}% util, {gpu.temperature}°C")

# Cancel a job
c3.jobs.cancel("job_id")

# Extend runtime
c3.jobs.extend("job_id", runtime=7200)

# Get user info
user = c3.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_c3_api_key",
    base_url="https://api.compute3.ai/v1"
)

response = client.chat.completions.create(
    model="deepseek-v3.1",
    messages=[{"role": "user", "content": "Hello!"}]
)

Error Handling

from c3 import C3, APIError

c3 = C3()

try:
    job = c3.jobs.get("invalid_id")
except APIError as e:
    print(f"Error {e.status_code}: {e.detail}")

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

c3_sdk-0.4.0.tar.gz (35.8 kB view details)

Uploaded Source

Built Distribution

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

c3_sdk-0.4.0-py3-none-any.whl (33.4 kB view details)

Uploaded Python 3

File details

Details for the file c3_sdk-0.4.0.tar.gz.

File metadata

  • Download URL: c3_sdk-0.4.0.tar.gz
  • Upload date:
  • Size: 35.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for c3_sdk-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3620131547480b181f8cccead6bdcbc7910bbea056ca981d6f43d58dc5b36387
MD5 df6866c71c37996631e88ddc6bc73025
BLAKE2b-256 53c82b10cf0a785f4a858226507af12fcec1d0332e0db9fd469ba250d3499f84

See more details on using hashes here.

File details

Details for the file c3_sdk-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: c3_sdk-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 33.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for c3_sdk-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 547336527d720b5838e3d84d9a304e49e6f2debb194f306e603610dd3eb5bd1e
MD5 e1d66425f9ed8a18fd018323e8f261aa
BLAKE2b-256 ba721e3e181f6a5af8ecbe931af47896bb518a49667d89e96e6961439846b80b

See more details on using hashes here.

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