Models

One endpoint lists the models your key can access.

Cura 1T is a research model, not a medical service, and not a substitute for a clinician. Benchmark scores do not establish safety for unsupervised clinical use.

GET /v1/models

Shell
curl https://inference.actava.ai/v1/models \  -H "Authorization: Bearer $ACTAVA_API_KEY"
200 OK (abridged)
{  "data": [    {      "id": "actava/cura-soar",      "name": "AVA: Cura Soar 1.0",      "input_modalities": ["text", "image"],      "output_modalities": ["text"],      "context_length": 262144,      "max_output_length": 32768,      "supported_features": ["tools", "reasoning"],      "is_ready": true    }  ]}

Entries are richer than the bare OpenAI shape — they carry modalities, context and output limits, and supported features. Read fields defensively rather than assuming the OpenAI object/owned_by keys.

Available models

Model idNameModalitiesContext window
actava/cura-soarCura 1TText + vision256K

Use the model id in the model field of chat completions.