Spaces:
Running
Running
Update app.py
Browse files
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 |
|