Skip to content
Developer Preview

ModelListResult

model/list result. A snapshot at call time: v1 has no catalog subscription. models MAY be empty — a build shipped with no bundled models is a supported configuration.

  • models
  • profileId
  • providerId
  • source
Source

schema/msp/experimental/msp.schema.json#/types/ModelListResult

{
"description": "`model/list` result. A snapshot at call time: v1 has no\ncatalog subscription. `models` MAY be empty — a build shipped with no\nbundled models is a supported configuration.",
"properties": {
"models": {
"description": "Visible rows only, newest `releaseDate` first.",
"items": {
"$ref": "#/$defs/ModelCatalogEntry"
},
"type": "array"
},
"profileId": {
"description": "The catalog's profile; `null` when none.",
"type": [
"string",
"null"
]
},
"providerId": {
"description": "The catalog's provider.",
"type": "string"
},
"source": {
"$ref": "#/$defs/ModelCatalogSource",
"description": "Where the catalog came from — how a client tells a live provider\ncatalog from a test fake and labels it honestly."
}
},
"required": [
"models",
"profileId",
"providerId",
"source"
],
"type": "object"
}