fix: unterminated quoted string problem

pull/52/head
adldotori 1 year ago
parent 8faac0b9df
commit 906adbe5dc

@ -17,7 +17,7 @@ class EvalOutputParser(BaseOutputParser):
action = match.group(1).strip()
plan = match.group(2)
what_i_did = match.group(3)
action_input = match.group(4).strip(" ").strip('"')
action_input = match.group(4).strip(" ")
return {
"action": action,

Loading…
Cancel
Save