Update README and config.rs to mark GPT4o as the newer model
This commit is contained in:
parent
f0d3ef36e2
commit
c49bbd2692
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -8,13 +8,13 @@ pub enum Model {
|
|||
// outdated
|
||||
Claude12,
|
||||
GPT35,
|
||||
GPT3,
|
||||
|
||||
// current
|
||||
Claude,
|
||||
GPT3,
|
||||
GPT4OMini,
|
||||
Llama,
|
||||
Mixtral,
|
||||
GPT4OMini
|
||||
Mixtral
|
||||
}
|
||||
|
||||
impl ToString for Model {
|
||||
|
|
Loading…
Reference in New Issue