ai-gateway/relay/adaptor/cohere/constant.go
2024-04-27 00:06:43 +08:00

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")
}
}