feat: support channel type AIGC2D (#220)

* feat: add AIGC2D Channel

* chore: remove console logging & update balance rendering

---------

Co-authored-by: Alone88 <im@aloen88.cn>
Co-authored-by: JustSong <songquanpeng@foxmail.com>
This commit is contained in:
Alone88
2023-06-29 21:34:17 +08:00
committed by GitHub
parent 8f6bd51f58
commit b1b3651e84
4 changed files with 31 additions and 1 deletions

View File

@@ -148,6 +148,7 @@ const (
ChannelTypeAIProxy = 10
ChannelTypePaLM = 11
ChannelTypeAPI2GPT = 12
ChannelTypeAIGC2D = 13
)
var ChannelBaseURLs = []string{
@@ -164,4 +165,5 @@ var ChannelBaseURLs = []string{
"https://api.aiproxy.io", // 10
"", // 11
"https://api.api2gpt.com", // 12
"https://api.aigc2d.com", // 13
}