ai-gateway/relay/adaptor/cohere/constant.go

15 lines
279 B
Go
Raw Normal View History

package cohere
var ModelList = []string{
"command", "command-nightly",
"command-light", "command-light-nightly",
"command-r", "command-r-plus",
}
2024-04-26 16:06:43 +00:00
func init() {
num := len(ModelList)
for i := 0; i < num; i++ {
ModelList = append(ModelList, ModelList[i]+"-internet")
}
}