Skip to main content

ListResponse[Runtime]

Paginated response containing Runtime records. The required field is items.

items object[]required

List of resource items

  • Array [
  • nameName (string)required

    Runtime name with tag (e.g. 'python:3.12-cuda12').

    imageImage (string)required

    Fully qualified container image reference for this runtime.

    baseBase (string)required

    Upstream base image / framework.

    included_packagesstring[]required

    Notable Python packages baked in (informational; not a complete list). Users add framework-specific deps via ZIP requirements.txt.

    descriptionDescription (string)required

    Short summary of intended use cases.

  • ]
  • next_cursor object

    Cursor for next page

    anyOf
    string
    has_moreHas More (boolean)

    Whether more pages exist

    Default value: false
    ListResponse[Runtime]
    {
    "items": [
    {
    "name": "string",
    "image": "string",
    "base": "string",
    "included_packages": [
    "string"
    ],
    "description": "string"
    }
    ],
    "next_cursor": "string",
    "has_more": false
    }