| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cohere
- import (
- "github.com/labring/aiproxy/core/model"
- "github.com/labring/aiproxy/core/relay/mode"
- )
- var ModelList = []model.ModelConfig{
- {
- Model: "command",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- {
- Model: "command-nightly",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- {
- Model: "command-light",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- {
- Model: "command-light-nightly",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- {
- Model: "command-r",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- {
- Model: "command-r-plus",
- Type: mode.ChatCompletions,
- Owner: model.ModelOwnerCohere,
- },
- }
|