Instances
List Instances
Section titled “List Instances”Get all available GPU instance types and their pricing.
from qualia import Qualia
client = Qualia()
instances = client.instances.list()Response
[{ "id": "gpu_1x_a100", "name": "A100 80GB", "description": "Single NVIDIA A100 GPU instance", "gpu_description": "NVIDIA A100 80GB", "credits_per_hour": 25, "specs": { "vcpus": 12, "memory_gib": 120, "storage_gib": 200, "gpu_count": 1, "gpu_type": "NVIDIA A100 80GB" }, "regions": [ {"name": "CANADA-1", "description": "Canada"} ], "region_count": 1}]Use the instance id when creating finetune jobs to specify a particular GPU configuration. If not specified, an optimal instance will be auto-selected based on your model type.