module RubyLLM::Providers::Bedrock::Capabilities

def input_price_for(model_id)

Returns:
  • (Float) - the price per million tokens for input

Parameters:
  • model_id (String) -- the model identifier
def input_price_for(model_id)
  PRICES.dig(model_family(model_id), :input) || default_input_price
end