Build an Extension

A Modly extension plugs any AI model that generates 3D from an image or a prompt into the app. It's a simple GitHub repository that users install by pasting its URL.

Illustrative guideFor the exact structure, take inspiration from the official extensions and the main repository documentation.

Repository structure

Each extension contains at least two files: a manifest.json that describes the model, and a generator.py that implements the generation.

my-extension/
my-extension/
├─ manifest.json      # model metadata
├─ generator.py       # generation logic
├─ requirements.txt   # Python dependencies
└─ README.md          # description & credits

Once your repository is published on GitHub, anyone can install it from Modly's Models page by pasting the HTTPS URL.

← Previous
Official Catalog
Next →
The manifest.json