Skip to content

Commit

Permalink
Use MAGELLAN_RAG_DEFAULT_MODEL instead of DEFAULT_MODEL
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkn committed Jun 26, 2024
1 parent 0e154c1 commit 8258bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/magellan_rag_query_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MagellanRagQueryJob < SlackResponseJob
"gpt-4o".freeze,
]

DEFAULT_MODEL = ENV.fetch("DEFAULT_MODEL", VALID_MODELS[0])
DEFAULT_MODEL = ENV.fetch("MAGELLAN_RAG_DEFAULT_MODEL", VALID_MODELS[0])

class InvalidOptionError < StandardError; end

Expand Down

0 comments on commit 8258bec

Please sign in to comment.