Default to gpt-4o (#2158)

* Default to gpt-4o

* Fix default
This commit is contained in:
Graham Neubig
2024-05-31 10:44:07 -04:00
committed by GitHub
parent a7b19a0048
commit 7a2122ebc2
6 changed files with 12 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ BACKEND_PORT = 3000
BACKEND_HOST = "127.0.0.1:$(BACKEND_PORT)"
FRONTEND_PORT = 3001
DEFAULT_WORKSPACE_DIR = "./workspace"
DEFAULT_MODEL = "gpt-3.5-turbo"
DEFAULT_MODEL = "gpt-4o"
CONFIG_FILE = config.toml
PRECOMMIT_CONFIG_PATH = "./dev_config/python/.pre-commit-config.yaml"