Skip to main content

Get started in one step

Connect to the decentralized GPU network and start computing.

Set up your account

  1. Visit console.comput3.ai to create your account
  2. Complete the verification process
  3. Fund your account with credits or connect your wallet
New users receive 100 free compute credits to get started!
  1. Navigate to your dashboard
  2. Go to Settings → API Keys
  3. Generate your API key and save it securely
export COMPUT3_API_KEY="your-api-key-here"
Never share your API key or commit it to version control.
Explore what you can build with Comput3 AI models:

SDK Examples

from comput3 import Client

client = Client(api_key="your-api-key", base_url="https://api.comput3.ai")

# Generate text using AI models
response = client.chat.completions.create(
    model="hermes4:70b",
    messages=[
        {"role": "user", "content": "Write a Python function to calculate fibonacci numbers"}
    ],
    max_tokens=500,
    temperature=0.7
)

print(response.choices[0].message.content)
Need help? Join our Discord community or check the API documentation.