- verbeteringen client

- vereenvoudiging van de ProgressTracker.vue door verwijderen van single line display
- toevoegen van busy animatie tijdens redeneren
This commit is contained in:
Josako
2025-07-21 16:01:26 +02:00
parent abc0a50dcc
commit f8f941d1e1
7 changed files with 57 additions and 51 deletions

View File

@@ -76,13 +76,13 @@ def create_app(config_file=None):
app.logger.info(f"EveAI Chat Client Started Successfully (PID: {os.getpid()})")
app.logger.info("-------------------------------------------------------------------------------------------------")
@app.before_request
def app_before_request():
if request.path.startswith('/healthz'):
pass
app.logger.debug(f'App before request: {request.path} ===== Method: {request.method} =====')
app.logger.debug(f'Full URL: {request.url}')
app.logger.debug(f'Endpoint: {request.endpoint}')
# @app.before_request
# def app_before_request():
# if request.path.startswith('/healthz'):
# pass
# app.logger.debug(f'App before request: {request.path} ===== Method: {request.method} =====')
# app.logger.debug(f'Full URL: {request.url}')
# app.logger.debug(f'Endpoint: {request.endpoint}')
return app