GET
/
v1
/
models
!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")
response = client.models.list()
[
  {
    "domain": "<string>",
    "model": "vlm-1"
  }
]

Get a list of schemas currently supported by the API. These are available for use with the generate endpoint.

!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")
response = client.models.list()

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
Successful Response
domain
string
required

The domain to get the info for.

model
string
default:vlm-1

The model identifier.

Allowed value: "vlm-1"