Compute Workspace

GPU Offers & Instances

Browse GPU capacity, launch instances from an offer, and manage their lifecycle.

Browse offers

GET/v1/compute/offers?provider=lambda

Lists available GPU offers, each with GPU type, region, and price per hour.

Lambda is the supported provider today.

Launch instances

POST/v1/compute/instances
ParameterTypeDescription
offer_idrequiredstringThe offer to launch from.
countintegerNumber of instances to launch.
start_scriptstringScript executed on instance boot (e.g. start the HybrIE runtime).
curl
curl -X POST http://localhost:8080/v1/compute/instances \
  -H "Content-Type: application/json" \
  -d '{
    "offer_id": "<offer-id>",
    "count": 1,
    "start_script": "#!/bin/bash\n./hybrie serve"
  }'

Inspect and terminate

GET/v1/compute/instances
GET/v1/compute/instances/:id
DELETE/v1/compute/instances/:id

List running instances, fetch one by id, or terminate it.

From the CLI

bash
stimulir compute offers
stimulir compute up <offer-id> --count 2
stimulir compute list
stimulir compute status <instance-id>
stimulir compute down <instance-id>