From 4ada0c1b90c240ca6c4ae7568c74ac8254b4e95d Mon Sep 17 00:00:00 2001 From: Brendan Smith Date: Sun, 14 Apr 2024 15:19:45 -0500 Subject: [PATCH] feat: upgrade to `gpt-4-turbo-2024-04-09` --- README.md | 2 +- config.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c022f74..d6a779c 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ pip install -r requirements.txt Settings in `config.toml`: -- Recommended to change the model from `gpt-3.5-turbo` to `gpt-4-1106-preview` for better results. +- Recommended to change the model from `gpt-3.5-turbo` to `gpt-4-turbo-2024-04-09` for better results. ## Usage diff --git a/config.toml b/config.toml index 6cd0f28..30521eb 100644 --- a/config.toml +++ b/config.toml @@ -2,7 +2,7 @@ experts = 10 [openai] -# model = "gpt-4-1106-preview" +# model = "gpt-4-turbo-2024-04-09" model = "gpt-3.5-turbo" temperature = 0.7 timeout = 60 # seconds