Update README and config.rs to mark GPT4o as the newer model

This commit is contained in:
Ahmad-A0 2024-08-04 02:20:51 +01:00
parent f0d3ef36e2
commit c49bbd2692
2 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ you can set their paths and filenames via `HEY_CONFIG_PATH`, `HEY_CONFIG_FILENAM
## config file reference ## config file reference
```toml ```toml
model = "Claude" # or "GPT3" model = "Claude" # or "GPT4OMini"
tos = false # whether if you agree to ddg chat tos tos = false # whether if you agree to ddg chat tos
``` ```

View File

@ -8,13 +8,13 @@ pub enum Model {
// outdated // outdated
Claude12, Claude12,
GPT35, GPT35,
GPT3,
// current // current
Claude, Claude,
GPT3, GPT4OMini,
Llama, Llama,
Mixtral, Mixtral
GPT4OMini
} }
impl ToString for Model { impl ToString for Model {