Documentation

Everything you need to start building with RunAICloud

Quick Example

# Install the SDK
pip install runaicloud

# Use the API
from runaicloud import RunAICloud

client = RunAICloud(api_key="your-api-key")

response = client.chat.completions.create(
    model="llama-3.2-70b",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
)

print(response.choices[0].message.content)