from fastapi import FastAPI from fastapi.responses import HTMLResponse app = FastAPI() _HTML = """ ElevenClip.AI
🎬

ElevenClip.AI

AI-powered short-clip studio for creators.
Long video in → ready-to-post clips out.

AMD Developer Hackathon 2026
AMD MI300X ROCm Whisper Large V3 Qwen2.5-7B Qwen2-VL-7B FastAPI React
""" @app.get("/", response_class=HTMLResponse) async def root() -> HTMLResponse: return HTMLResponse(_HTML)