ebinv2 commited on
Commit
98041a3
·
verified ·
1 Parent(s): c99d38c

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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