Tool details
| Field | Value |
|---|---|
| Name | list_models |
| Group | AI Models |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {},
"additionalProperties": false,
"description": "Input schema for the list_models tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"models": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"model_id": {
"type": "string",
"description": "The model id associated with this tool result."
},
"provider": {
"type": "string",
"description": "The provider associated with this tool result."
},
"provider_label": {
"type": "string",
"description": "The provider label associated with this tool result."
},
"name": {
"type": "string",
"description": "Human-readable name for the returned record."
},
"description": {
"type": [
"string",
"null"
],
"description": "Human-readable description returned by the tool."
},
"aliases": {
"type": "array",
"items": {
"type": "string",
"description": "One alias item associated with this tool result."
},
"description": "List of aliases associated with this tool result."
},
"capabilities": {
"type": "object",
"properties": {
"web_research": {
"type": "boolean",
"description": "The web research associated with this tool result."
},
"streaming": {
"type": "boolean",
"description": "The streaming associated with this tool result."
},
"tools": {
"type": "boolean",
"description": "The tools associated with this tool result."
},
"vision": {
"type": "boolean",
"description": "The vision associated with this tool result."
},
"thinking": {
"type": "boolean",
"description": "The thinking associated with this tool result."
}
},
"required": [
"web_research",
"streaming",
"tools",
"vision",
"thinking"
],
"additionalProperties": false,
"description": "Structured capabilities details associated with this tool result."
},
"temperature": {
"anyOf": [
{
"type": "object",
"properties": {
"min": {
"type": "number",
"description": "The min associated with this tool result."
},
"max": {
"type": "number",
"description": "The max associated with this tool result."
}
},
"required": [
"min",
"max"
],
"additionalProperties": false,
"description": "Structured temperature details associated with this tool result."
},
{
"type": "null",
"description": "The temperature returned by the tool."
}
],
"description": "The temperature associated with this tool result."
},
"supported_provider_tools": {
"type": "array",
"items": {
"type": "string",
"description": "One supported provider tool item associated with this tool result."
},
"description": "List of supported provider tools associated with this tool result."
},
"is_default": {
"type": "boolean",
"description": "The is default associated with this tool result."
}
},
"required": [
"id",
"model_id",
"provider",
"provider_label",
"name",
"description",
"aliases",
"capabilities",
"temperature",
"supported_provider_tools",
"is_default"
],
"additionalProperties": false,
"description": "One model item associated with this tool result."
},
"description": "List of models associated with this tool result."
},
"providers": {
"type": "array",
"items": {
"type": "string",
"description": "One provider item associated with this tool result."
},
"description": "List of providers associated with this tool result."
},
"default_model_id": {
"type": "string",
"description": "The default model id associated with this tool result."
}
},
"required": [
"models",
"providers",
"default_model_id"
],
"additionalProperties": false,
"description": "Structured result returned by the list_models tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}