Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev committed Mar 29, 2024
1 parent c86e4d9 commit 1eb021b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/server/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_supported_models():
"chat_model": ChatOpenAI(model="gpt-3.5-turbo", temperature=0),
"description": "GPT-3.5 Turbo",
}
if os.environ.get("DISABLE_GPT4").lower() != "true":
if os.environ.get("DISABLE_GPT4", "").lower() != "true":
models["gpt-4-0125-preview"] = {
"chat_model": ChatOpenAI(model="gpt-4-0125-preview", temperature=0),
"description": "GPT-4 0125 Preview",
Expand Down

0 comments on commit 1eb021b

Please sign in to comment.