diff --git a/subgen.py b/subgen.py index 4d3a823..036d5ea 100644 --- a/subgen.py +++ b/subgen.py @@ -203,6 +203,10 @@ def has_image_extension(file_path): def handle_get_request(request: Request): return {"You accessed this request incorrectly via a GET request. See https://github.com/McCloudS/subgen for proper configuration"} +@app.get("/") +def webui(): + return {"The webui for configuration was removed on 1 October 2025, please configure via environment variables or in your Docker settings."} + @app.get("/status") def status(): return {"version" : f"Subgen {subgen_version}, stable-ts {stable_whisper.__version__}, faster-whisper {faster_whisper.__version__} ({docker_status})"}