get_top_rated_models
Retrieve the highest-rated AI models from Civitai's collection, filtering by time period (AllTime, Year, Month, Week, Day) and limiting results (1-100).
Instructions
Get the highest rated models
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of models to return (default: 20) | |
| period | No | Time period for rating ranking (default: AllTime) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of models to return (default: 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"period": {
"description": "Time period for rating ranking (default: AllTime)",
"enum": [
"AllTime",
"Year",
"Month",
"Week",
"Day"
],
"type": "string"
}
},
"type": "object"
}