pvanand commited on
Commit
85c4751
·
verified ·
1 Parent(s): 28fcd5b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -1
main.py CHANGED
@@ -435,7 +435,9 @@ import re
435
 
436
  import re
437
 
438
- def parse_followup_and_tools(input_text):
 
 
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