Skip to content

Commit

Permalink
🤖 Model: Set the default model to gpt-4o.
Browse files Browse the repository at this point in the history
  • Loading branch information
yym68686 committed May 14, 2024
1 parent edba99b commit 8663ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

API = os.environ.get('API', None)
API_URL = os.environ.get('API_URL', 'https://api.openai.com/v1/chat/completions')
GPT_ENGINE = os.environ.get('GPT_ENGINE', 'gpt-4-turbo-2024-04-09')
GPT_ENGINE = os.environ.get('GPT_ENGINE', 'gpt-4o')
PASS_HISTORY = (os.environ.get('PASS_HISTORY', "True") == "False") == False

USE_GOOGLE = (os.environ.get('USE_GOOGLE', "True") == "False") == False
Expand Down

0 comments on commit 8663ab1

Please sign in to comment.