From c49bbd26927b1a3c978a39881370df962d9b1ead Mon Sep 17 00:00:00 2001 From: Ahmad-A0 <71089234+Ahmad-A0@users.noreply.github.com> Date: Sun, 4 Aug 2024 02:20:51 +0100 Subject: [PATCH] Update README and config.rs to mark GPT4o as the newer model --- README.md | 2 +- src/config.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c74b94a..f2c1466 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ you can set their paths and filenames via `HEY_CONFIG_PATH`, `HEY_CONFIG_FILENAM ## config file reference ```toml -model = "Claude" # or "GPT3" +model = "Claude" # or "GPT4OMini" tos = false # whether if you agree to ddg chat tos ``` diff --git a/src/config.rs b/src/config.rs index eb4790d..644acb8 100644 --- a/src/config.rs +++ b/src/config.rs @@ -8,13 +8,13 @@ pub enum Model { // outdated Claude12, GPT35, + GPT3, // current Claude, - GPT3, + GPT4OMini, Llama, - Mixtral, - GPT4OMini + Mixtral } impl ToString for Model {