module RubyLLM::Providers::Anthropic::Chat

def parse_completion_response(response)

def parse_completion_response(response)
  data = response.body
  content_blocks = data['content'] || []
  text_content = extract_text_content(content_blocks)
  tool_use = find_tool_use(content_blocks)
  build_message(data, text_content, tool_use)
end