module RubyLLM::Providers::Bedrock::Capabilities

def supports_streaming?(model_id)

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

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