hf_get_model_info
Retrieve detailed metadata, files, and configuration for any model on the Hugging Face Hub by specifying its repository ID, enabling comprehensive exploration and analysis.
Instructions
Get detailed information for a specific model including metadata, files, configuration, and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_id | Yes | Model repository ID (e.g., 'microsoft/DialoGPT-medium') | |
revision | No | Optional git revision (branch, tag, or commit hash) |
Input Schema (JSON Schema)
{
"properties": {
"repo_id": {
"description": "Model repository ID (e.g., 'microsoft/DialoGPT-medium')",
"type": "string"
},
"revision": {
"description": "Optional git revision (branch, tag, or commit hash)",
"type": "string"
}
},
"required": [
"repo_id"
],
"type": "object"
}