How to Update the Hugging Face Space
Space URL:
https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI
Manual Upload
- Open the Space.
- Click
Files. - Open
index.html. - Click the edit pencil.
- Replace the default file with the contents of
hf-space/index.html. - Commit the change.
- Add or edit
README.md. - Replace it with the contents of
hf-space/README.md. - Commit the change.
- Go back to the
Apptab.
The Space should now show the ElevenClip.AI landing page instead of the default static Space message.
Important: Hugging Face Spaces read their runtime configuration from the YAML block at the very top of README.md. Do not remove the opening ---, sdk: static, or app_file: index.html lines.
Git Option
If you have Hugging Face Git credentials configured:
git clone https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI
cp hf-space/index.html ElevenClip-AI/index.html
cp hf-space/README.md ElevenClip-AI/README.md
cd ElevenClip-AI
git add index.html README.md
git commit -m "Add ElevenClip.AI landing page"
git push