Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -96,6 +96,7 @@ class Me:
|
|
| 96 |
print(f"Tool called: {tool_name}", flush=True)
|
| 97 |
tool = globals().get(tool_name)
|
| 98 |
result = tool(**arguments) if tool else {}
|
|
|
|
| 99 |
results.append({"role": "tool","content": json.dumps(result),"tool_call_id": tool_call.id})
|
| 100 |
return results
|
| 101 |
|
|
|
|
| 96 |
print(f"Tool called: {tool_name}", flush=True)
|
| 97 |
tool = globals().get(tool_name)
|
| 98 |
result = tool(**arguments) if tool else {}
|
| 99 |
+
print("test")
|
| 100 |
results.append({"role": "tool","content": json.dumps(result),"tool_call_id": tool_call.id})
|
| 101 |
return results
|
| 102 |
|