- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
21 lines
355 B
Go
21 lines
355 B
Go
package alibailian
|
|
|
|
// https://help.aliyun.com/zh/model-studio/getting-started/models
|
|
|
|
var ModelList = []string{
|
|
"qwen-turbo",
|
|
"qwen-plus",
|
|
"qwen-long",
|
|
"qwen-max",
|
|
"qwen-coder-plus",
|
|
"qwen-coder-plus-latest",
|
|
"qwen-coder-turbo",
|
|
"qwen-coder-turbo-latest",
|
|
"qwen-mt-plus",
|
|
"qwen-mt-turbo",
|
|
"qwq-32b-preview",
|
|
|
|
"deepseek-r1",
|
|
"deepseek-v3",
|
|
}
|