module RubyLLM::Providers::Anthropic::Tools

def format_tool_call(msg)

def format_tool_call(msg)
  tool_call = msg.tool_calls.values.first
  {
    role: 'assistant',
    content: [
      format_text_block(msg.content),
      format_tool_use_block(tool_call)
    ]
  }
end