This repository contains a minimal FastAPI application exposing a dummy video generation service. It mimics the request/response structure of vLLM's OpenAI compatible API but returns placeholder video files instead of text.
POST /generate– Accepts a JSON body withprompt, base64 encodedimage, optionalnegative_promptandguidancefields. Returns the path to a generated video file.GET /download/{file_id}– Download a previously generated dummy MP4 file.GET /ping– Basic health‑check that also reports environment configuration.
The service does not run any actual video generation pipeline. It is intended for development and integration tests.