Skip to content

Commit

Permalink
fix: claude-3-5-sonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
deanxv committed Feb 26, 2025
1 parent c490752 commit 7dc29fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ _觉得有点意思的话 别忘了点个 ⭐_
- **gpt-4o**
- **o1**
- **o3-mini-high**
- **claude-3-5-sonnet**
- **claude-3-7-sonnet**
- **claude-3-5-haiku**
- **gemini-2.0-flash**
Expand Down
4 changes: 3 additions & 1 deletion common/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package common
import "time"

var StartTime = time.Now().Unix() // unit: second
var Version = "v1.10.15" // this hard coding will be replaced automatically when building, no need to manually change
var Version = "v1.10.16" // this hard coding will be replaced automatically when building, no need to manually change

var DefaultOpenaiModelList = []string{
"gpt-4o",
"o1",
"o3-mini-high",
"claude-3-5-sonnet",
"claude-3-7-sonnet",
"claude-3-5-haiku",
"gemini-2.0-flash",
Expand All @@ -28,6 +29,7 @@ var TextModelList = []string{
"gpt-4o",
"o1",
"o3-mini-high",
"claude-3-5-sonnet",
"claude-3-7-sonnet",
"claude-3-5-haiku",
"gemini-2.0-flash",
Expand Down

0 comments on commit 7dc29fd

Please sign in to comment.