588f03e927
Also, downgrade LLM for commands to mini. It's much cheaper and I only upgraded because of the interpretation complexities that the insight command introduced. We are implementing a much better approach with Ask.
5 lines
171 B
Ruby
5 lines
171 B
Ruby
RubyLLM.configure do |config|
|
|
config.openai_api_key = Rails.application.credentials.openai_api_key || ENV["OPEN_AI_API_KEY"]
|
|
config.default_model = "gpt-4.1-mini"
|
|
end
|