module RubyLLM::Providers::Anthropic::Chat

def extract_text_content(blocks)

def extract_text_content(blocks)
  text_blocks = blocks.select { |c| c['type'] == 'text' }
  text_blocks.map { |c| c['text'] }.join
end