Skip to content

Commit

Permalink
Update default model
Browse files Browse the repository at this point in the history
  • Loading branch information
cxumol authored May 20, 2024
1 parent 5c66db7 commit 3e85eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

CHEAP_API_BASE = os.getenv("CHEAP_API_BASE") or OPENAI_API_BASE
CHEAP_API_KEY = os.getenv("CHEAP_API_KEY") or OPENAI_API_KEY
CHEAP_MODEL = os.getenv("CHEAP_MODEL") or "gpt-3.5-turbo"
CHEAP_MODEL = os.getenv("CHEAP_MODEL") or "gpt-3.5-turbo-0613"

STRONG_API_BASE = os.getenv("STRONG_API_BASE") or OPENAI_API_BASE
STRONG_API_KEY = os.getenv("STRONG_API_KEY") or OPENAI_API_KEY
STRONG_MODEL = os.getenv("STRONG_MODEL") or "gpt-4-0125-preview"
STRONG_MODEL = os.getenv("STRONG_MODEL") or "gpt-4o"

IS_SHARE = bool(os.getenv("IS_SHARE")) or False
IS_DEBUG = bool(os.getenv("IS_DEBUG")) or False
Expand Down

0 comments on commit 3e85eb9

Please sign in to comment.