From ca3908412a0106727d31e9f74ab938f664c9f1e2 Mon Sep 17 00:00:00 2001 From: alpha-nerd-nomyo Date: Fri, 5 Sep 2025 12:15:57 +0200 Subject: [PATCH] Add files via upload --- router.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/router.py b/router.py index 9b83fb4..51cf51d 100644 --- a/router.py +++ b/router.py @@ -1234,7 +1234,7 @@ async def openai_completions_proxy(request: Request): @app.get("/v1/models") async def openai_models_proxy(request: Request): """ - Proxy a models request to Ollama endpoints and reply with a unique list of all models. + Proxy an OpenAI API models request to Ollama endpoints and reply with a unique list of all models. """ # 1. Query all endpoints for models @@ -1269,8 +1269,8 @@ async def redirect_favicon(): @app.get("/", response_class=HTMLResponse) async def index(request: Request): """ - Render the landing page that lists the configured endpoints - and the models available / running. + Render the dynamic NOMYO Router dashboard listing the configured endpoints + and the models details, availability & task status. """ return HTMLResponse(content=open("static/index.html", "r").read(), status_code=200)