bstraehle commited on
Commit
0e2c552
1 Parent(s): 2e4d9f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -212,7 +212,7 @@ def chat(message, history):
212
  tool_outputs=[
213
  {
214
  "tool_call_id": tool_call_id,
215
- "output": tool_call_result.to_json()
216
  }
217
  ]
218
  )
@@ -232,7 +232,7 @@ def chat(message, history):
232
  tool_outputs=[
233
  {
234
  "tool_call_id": tool_call_id,
235
- "output": tool_call_result
236
  }
237
  ]
238
  )
 
212
  tool_outputs=[
213
  {
214
  "tool_call_id": tool_call_id,
215
+ "output": tool_call_result
216
  }
217
  ]
218
  )
 
232
  tool_outputs=[
233
  {
234
  "tool_call_id": tool_call_id,
235
+ "output": tool_call_result.to_json()
236
  }
237
  ]
238
  )