From 92d799e73ef4bb31f4955878ee3fdc0a530938f5 Mon Sep 17 00:00:00 2001 From: egregore Date: Mon, 2 Feb 2026 12:45:43 +0000 Subject: [PATCH] Rename web service to converse Updated path references and docstring to reflect new service name. Part of verb-based naming convention for all services. Co-Authored-By: Claude Opus 4.5 --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 4b5e44a..609221d 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Egregore Web Service - HTTP frontend +Egregore Converse Service - HTTP frontend Serves the chat UI and proxies requests to reason and recall services. Runs on port 8080. @@ -36,7 +36,7 @@ app = FastAPI(title="Egregore", docs_url=None, redoc_url=None) security = HTTPBasic() # Static files path -STATIC_PATH = "/home/admin/services/web/static" +STATIC_PATH = "/home/admin/services/converse/static" # HTTP client for internal services http_client = httpx.AsyncClient(timeout=120.0)