get-space-info
Retrieve detailed information about a specific Space on Hugging Face by providing its unique ID, enabling streamlined access to Space metadata and configurations.
Instructions
Get detailed information about a specific Space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
space_id | Yes | The ID of the Space (e.g., 'huggingface/diffusers-demo') |
Input Schema (JSON Schema)
{
"properties": {
"space_id": {
"description": "The ID of the Space (e.g., 'huggingface/diffusers-demo')",
"type": "string"
}
},
"required": [
"space_id"
],
"type": "object"
}