- 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)
15 lines
279 B
Go
15 lines
279 B
Go
package cohere
|
|
|
|
var ModelList = []string{
|
|
"command", "command-nightly",
|
|
"command-light", "command-light-nightly",
|
|
"command-r", "command-r-plus",
|
|
}
|
|
|
|
func init() {
|
|
num := len(ModelList)
|
|
for i := 0; i < num; i++ {
|
|
ModelList = append(ModelList, ModelList[i]+"-internet")
|
|
}
|
|
}
|