Method: AskChatgpt::DefaultBehavior#with_model

Defined in:
lib/ask_chatgpt/default_behavior.rb

#with_model(*models) ⇒ Object Also known as: with_models



6
7
8
9
10
11
12
# File 'lib/ask_chatgpt/default_behavior.rb', line 6

def with_model(*models)
  self.tap do
    models.each do |model|
      add_prompt AskChatGPT::Prompts::Model.new(model)
    end
  end
end