class RubyLLM::Chat

def execute_tool(tool_call)

def execute_tool(tool_call)
  tool = tools[tool_call.name.to_sym]
  args = tool_call.arguments
  tool.call(args)
end