The manifest.json
The manifest describes your model and its downloadable variants. Modly uses it to display the extension in the catalog.
manifest.json
{
"name": "My 3D Extension",
"version": "1.0.0",
"author": "your-username",
"model": "MyModel",
"description": "Generates 3D meshes from images or prompts.",
"repository": "https://github.com/your-username/my-extension",
"variants": [
{ "id": "base", "label": "Base", "url": "https://huggingface.co/..." },
{ "id": "fast", "label": "Fast", "url": "https://huggingface.co/..." }
]
}
nameName shown in the catalog.
modelModel family / architecture.
variantsThe downloadable weights offered.
repositoryHTTPS URL of the GitHub repository.