get_trending_models
Discover trending AI models from Hugging Face filtered by task type and sorted by popularity metrics to identify relevant machine learning models for your projects.
Instructions
Get trending AI models from Hugging Face
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | No | Filter by task (e.g., 'text-generation', 'image-classification') | |
| sort | No | Sort criterion | downloads |
| limit | No | Maximum number of results |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 30,
"description": "Maximum number of results",
"type": "integer"
},
"sort": {
"default": "downloads",
"description": "Sort criterion",
"enum": [
"downloads",
"likes",
"trending",
"created"
],
"type": "string"
},
"task": {
"description": "Filter by task (e.g., 'text-generation', 'image-classification')",
"type": "string"
}
},
"type": "object"
}