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 <noreply@anthropic.com>
This commit is contained in:
egregore 2026-02-02 12:45:43 +00:00
parent 992c058cab
commit 92d799e73e

View file

@ -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)