- Introduction of dynamic Retrievers & Specialists
- Introduction of dynamic Processors - Introduction of caching system - Introduction of a better template manager - Adaptation of ModelVariables to support dynamic Processors / Retrievers / Specialists - Start adaptation of chat client
This commit is contained in:
@@ -9,12 +9,11 @@ basic_bp = Blueprint('basic_bp', __name__)
|
||||
|
||||
@basic_bp.before_request
|
||||
def log_before_request():
|
||||
current_app.logger.debug(f"Before request (basic_bp): {request.method} {request.url}")
|
||||
pass
|
||||
|
||||
|
||||
@basic_bp.after_request
|
||||
def log_after_request(response):
|
||||
current_app.logger.debug(f"After request (basic_bp): {request.method} {request.url} - Status: {response.status}")
|
||||
return response
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user