bstraehle commited on
Commit
03971e6
·
verified ·
1 Parent(s): b5a97de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -135,7 +135,7 @@ def get_run_step_details(run_steps):
135
  if hasattr(step_details, "tool_calls"):
136
  for tool_call in step_details.tool_calls:
137
  show_json("tool_call", tool_call)
138
- result = execute_tool_call(tool_call)
139
  ###
140
 
141
  return run_step_details
@@ -145,7 +145,7 @@ def get_messages(client, thread):
145
  thread_id=thread.id
146
  )
147
 
148
- show_json("messages", messages)
149
 
150
  return messages
151
 
 
135
  if hasattr(step_details, "tool_calls"):
136
  for tool_call in step_details.tool_calls:
137
  show_json("tool_call", tool_call)
138
+ #result = execute_tool_call(tool_call)
139
  ###
140
 
141
  return run_step_details
 
145
  thread_id=thread.id
146
  )
147
 
148
+ #show_json("messages", messages)
149
 
150
  return messages
151