AI-Quotient commited on
Commit
a8a550d
·
verified ·
1 Parent(s): 7e89de8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -106,10 +106,10 @@ def pvsnp(problem):
106
  {"messages": "Use tools to answer:"+problem},
107
  stream_mode="updates",
108
  ):
109
- for _, update in step.items():
110
- for message in update.get("messages", []):
111
- message.pretty_print()
112
- output.append(message.pretty_print())
113
  return output
114
 
115
 
 
106
  {"messages": "Use tools to answer:"+problem},
107
  stream_mode="updates",
108
  ):
109
+ for _, update in step.items():
110
+ for message in update.get("messages", []):
111
+ message.pretty_print()
112
+ output.append(message.pretty_print())
113
  return output
114
 
115