Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GPU orchestration and LLM API platform
pip install c3-sdk c3-cli
c3 configure # or export C3_API_KEY=your_key
from c3 import C3 c3 = C3() # Check balance balance = c3.billing.balance() print(f"${balance.total}") # Create GPU job job = c3.jobs.create( image="nvidia/cuda:12.0", gpu_type="l40s", command="python train.py" )
c3 billing balance c3 jobs create nvidia/cuda:12.0 -g l40s -c "python train.py" -f c3 llm chat deepseek-v3.1 "Hello!"
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!"}] )