Skip to main content

Endpoint

GET /v1/models
Returns available models in the standard OpenAI format.

Response

{
  "object": "list",
  "data": [
    {
      "id": "mako-8b-operator",
      "object": "model",
      "created": 1716854400,
      "owned_by": "mako",
      "root": "mako-8b-operator",
      "parent": null
    }
  ]
}

Model routing

The model field in your chat completion request is mapped internally:
Request valueInternal modelBackendStreaming
"conductor"Mako-32B ConductorRunPod Serverlessstream: false only
"operator"Mako-8B OperatorOllamastream: true or false
If model is omitted, the gateway defaults to the Operator model.