cohere · Schema
ListModelsResponse
Properties
| Name | Type | Description |
|---|---|---|
| models | array | A list of available models. |
| next_page_token | string | A token to retrieve the next page of results. Null if there are no more pages. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListModelsResponse",
"title": "ListModelsResponse",
"type": "object",
"properties": {
"models": {
"type": "array",
"description": "A list of available models.",
"items": {
"$ref": "#/components/schemas/Model"
}
},
"next_page_token": {
"type": "string",
"nullable": true,
"description": "A token to retrieve the next page of results. Null if there are no more pages."
}
}
}