module RubyLLM::Providers::DeepSeek::Capabilities

def model_family(model_id)

Returns:
  • (Symbol) - the model family

Parameters:
  • model_id (String) -- the model identifier
def model_family(model_id)
  case model_id
  when /deepseek-reasoner/ then :reasoner
  else :chat # Default to chat family
  end
end