search_models
Use this tool to find AI models on Civitai with filters like type, base model, and sorting options. Enable precise searches for Checkpoint, LORA, Controlnet, and more.
Instructions
Search for AI models on Civitai with various filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| baseModels | No | Filter by base model types (e.g., ["SD 1.5", "SDXL 1.0"]) | |
| limit | No | Number of results (1-100, default 20) | |
| nsfw | No | Include NSFW content | |
| page | No | Page number for pagination | |
| period | No | Time period for sorting | |
| query | No | Search query to filter models by name | |
| sort | No | Sort order for results | |
| types | No | Filter by model types |
Input Schema (JSON Schema)
{
"properties": {
"baseModels": {
"description": "Filter by base model types (e.g., [\"SD 1.5\", \"SDXL 1.0\"])",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Number of results (1-100, default 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"nsfw": {
"description": "Include NSFW content",
"type": "boolean"
},
"page": {
"description": "Page number for pagination",
"minimum": 1,
"type": "number"
},
"period": {
"description": "Time period for sorting",
"enum": [
"AllTime",
"Year",
"Month",
"Week",
"Day"
],
"type": "string"
},
"query": {
"description": "Search query to filter models by name",
"type": "string"
},
"sort": {
"description": "Sort order for results",
"enum": [
"Highest Rated",
"Most Downloaded",
"Newest"
],
"type": "string"
},
"types": {
"description": "Filter by model types",
"items": {
"enum": [
"Checkpoint",
"TextualInversion",
"Hypernetwork",
"AestheticGradient",
"LORA",
"Controlnet",
"Poses"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
}