Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -456,6 +456,27 @@ Sure! Here's the information you requested:
|
|
456 |
"""
|
457 |
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
import traceback
|
460 |
def generate_answer(message, choice, retrieval_mode, selected_model):
|
461 |
logging.debug(f"generate_answer called with choice: {choice}, retrieval_mode: {retrieval_mode}, and selected_model: {selected_model}")
|
|
|
456 |
"""
|
457 |
|
458 |
|
459 |
+
|
460 |
+
import re
|
461 |
+
|
462 |
+
def clean_response(response_text):
|
463 |
+
# Remove system and user tags
|
464 |
+
response_text = re.sub(r'<\|system\|>.*?<\|end\|>', '', response_text, flags=re.DOTALL)
|
465 |
+
response_text = re.sub(r'<\|user\|>.*?<\|end\|>', '', response_text, flags=re.DOTALL)
|
466 |
+
response_text = re.sub(r'<\|assistant\|>', '', response_text, flags=re.DOTALL)
|
467 |
+
|
468 |
+
# Clean up the text by removing extra whitespace
|
469 |
+
cleaned_response = response_text.strip()
|
470 |
+
cleaned_response = re.sub(r'\s+', ' ', cleaned_response)
|
471 |
+
|
472 |
+
# Ensure the response is conversational and organized
|
473 |
+
cleaned_response = cleaned_response.replace('1.', '\n1.').replace('2.', '\n2.').replace('3.', '\n3.').replace('4.', '\n4.').replace('5.', '\n5.')
|
474 |
+
|
475 |
+
return cleaned_response
|
476 |
+
|
477 |
+
|
478 |
+
|
479 |
+
|
480 |
import traceback
|
481 |
def generate_answer(message, choice, retrieval_mode, selected_model):
|
482 |
logging.debug(f"generate_answer called with choice: {choice}, retrieval_mode: {retrieval_mode}, and selected_model: {selected_model}")
|