Skip to content

Commit c47442b

Browse files
committed
fix: imagen3
1 parent d31c4ff commit c47442b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ _觉得有点意思的话 别忘了点个 ⭐_
3838
- **ideogram**
3939
- **recraft-v3**
4040
- **dall-e-3**
41+
- **imagen3**
4142
- [x] 支持自定义请求头校验值(Authorization)
4243
- [x] 支持cookie池(随机)
4344
- [x] 支持请求失败自动切换cookie重试(需配置cookie池)

common/constants.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common
33
import "time"
44

55
var StartTime = time.Now().Unix() // unit: second
6-
var Version = "v1.10.7" // this hard coding will be replaced automatically when building, no need to manually change
6+
var Version = "v1.10.8" // this hard coding will be replaced automatically when building, no need to manually change
77

88
var DefaultOpenaiModelList = []string{
99
"gpt-4o",
@@ -21,6 +21,7 @@ var DefaultOpenaiModelList = []string{
2121
"ideogram",
2222
"recraft-v3",
2323
"dall-e-3",
24+
"imagen3",
2425
}
2526

2627
var TextModelList = []string{
@@ -47,4 +48,5 @@ var ImageModelList = []string{
4748
"ideogram",
4849
"recraft-v3",
4950
"dall-e-3",
51+
"imagen3",
5052
}

0 commit comments

Comments
 (0)