Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| has_temperature | boolean | |
| id | string | |
| max_tokens | number | |
| name | string | |
| raw | object | |
| web_url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GenaiModel",
"title": "GenaiModel",
"properties": {
"description": {
"type": "string"
},
"has_temperature": {
"type": "boolean"
},
"id": {
"type": "string"
},
"max_tokens": {
"type": "number"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"web_url": {
"type": "string"
}
},
"type": "object"
}