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:
parent
992c058cab
commit
92d799e73e
1 changed files with 2 additions and 2 deletions
4
main.py
4
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue