Update app.py
Browse files
app.py
CHANGED
@@ -91,10 +91,10 @@ class ChatbotAPP:
|
|
91 |
print(f"Chat log {self.chat_log_name} exist")
|
92 |
return files
|
93 |
|
94 |
-
def strip_text(self,text):
|
95 |
-
|
96 |
-
#
|
97 |
-
pattern = r"\(.*?\)
|
98 |
|
99 |
# Use re.sub() to replace the matched text with an empty string
|
100 |
cleaned_text = re.sub(pattern, "", text)
|
|
|
91 |
print(f"Chat log {self.chat_log_name} exist")
|
92 |
return files
|
93 |
|
94 |
+
def strip_text(self, text):
|
95 |
+
# Pattern to match text inside parentheses or angle brackets, any text following angle brackets,
|
96 |
+
# new line characters, and anything after ',', '<', or '|'
|
97 |
+
pattern = r"\(.*?\)|<.*?>.*|\n|<.*|\|.*"
|
98 |
|
99 |
# Use re.sub() to replace the matched text with an empty string
|
100 |
cleaned_text = re.sub(pattern, "", text)
|