fix: unterminated quoted string problem (#52)

main
Taeho 1 year ago committed by GitHub
parent da39de2cb2
commit b2f71faed6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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