Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
|
@@ -435,7 +435,9 @@ import re
|
|
| 435 |
|
| 436 |
import re
|
| 437 |
|
| 438 |
-
|
|
|
|
|
|
|
| 439 |
# Remove extra brackets, excess quotes, and excessive whitespace
|
| 440 |
cleaned_text = re.sub(r'\[|\]|"+|\s+', ' ', input_text).strip()
|
| 441 |
|
|
|
|
| 435 |
|
| 436 |
import re
|
| 437 |
|
| 438 |
+
import re
|
| 439 |
+
|
| 440 |
+
def parse_followup_response(input_text):
|
| 441 |
# Remove extra brackets, excess quotes, and excessive whitespace
|
| 442 |
cleaned_text = re.sub(r'\[|\]|"+|\s+', ' ', input_text).strip()
|
| 443 |
|