module RubyLLM::Providers::Anthropic::Tools

def format_tool_use_block(tool_call)

def format_tool_use_block(tool_call)
  {
    type: 'tool_use',
    id: tool_call.id,
    name: tool_call.name,
    input: tool_call.arguments
  }
end