Commit 8db2418 1 parent 23e6fd6 commit 8db2418 Copy full SHA for 8db2418
File tree 4 files changed +5
-3
lines changed
4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ CMD ["./myApp"]
74
74
### Model versions
75
75
76
76
Currently this tool defaults to
77
- [ ` gpt-4-turbo-preview ` ] ( https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo ) .
77
+ [ ` gpt-4o-mini ` ] ( https://platform.openai.com/docs/models/gpt-4o-mini ) .
78
78
You can alternatively use any of the 3.5 & 4 models by specifying the model
79
79
name in an environment variable
80
80
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ module github.com/edofic/chatgpt-cli
2
2
3
3
go 1.22
4
4
5
- require github.com/sashabaranov/go-openai v1.20.4
5
+ require github.com/sashabaranov/go-openai v1.27.1
Original file line number Diff line number Diff line change 1
1
github.com/sashabaranov/go-openai v1.20.4 h1:095xQ/fAtRa0+Rj21sezVJABgKfGPNbyx/sAN/hJUmg =
2
2
github.com/sashabaranov/go-openai v1.20.4 /go.mod h1:lj5b/K+zjTSFxVLijLSTDZuP7adOgerWeFyZLUhAKRg =
3
+ github.com/sashabaranov/go-openai v1.27.1 h1:7Nx6db5NXbcoutNmAUQulEQZEpHG/SkzfexP2X5RWMk =
4
+ github.com/sashabaranov/go-openai v1.27.1 /go.mod h1:lj5b/K+zjTSFxVLijLSTDZuP7adOgerWeFyZLUhAKRg =
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
)
17
17
18
18
const (
19
- defaultModel = openai .GPT4TurboPreview
19
+ defaultModel = openai .GPT4oMini
20
20
sessionFile = "/tmp/chatgpt-cli-last-session.json"
21
21
)
22
22
You can’t perform that action at this time.
0 commit comments