validate_model
Verify if a model ID is valid before using it for text chat or image analysis tasks in the OpenRouter ecosystem.
Instructions
Check if a model ID is valid
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | The model ID to validate |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"description": "The model ID to validate",
"type": "string"
}
},
"required": [
"model"
],
"type": "object"
}