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
|
## 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
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue