module RubyLLM::Providers::Bedrock::Capabilities

def supports_vision?(model_id)

Returns:
  • (Boolean) - true if the model supports vision

Parameters:
  • model_id (String) -- the model identifier
def supports_vision?(model_id)
  model_id.match?(/anthropic\.claude/)
end