diff --git a/src/api/routes/chatbot.py b/src/api/routes/chatbot.py index 13add1e..256d431 100644 --- a/src/api/routes/chatbot.py +++ b/src/api/routes/chatbot.py @@ -47,6 +47,8 @@ def validate_worker_document(): # Validate the worker's response using the provided document validation_result = chatbot.validate_worker(question, docs) + + print(validation_result) if not validation_result: return jsonify({"error": "Validation failed", "message": "Validation process failed."}), 400