constant.go 737 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cohere
  2. import (
  3. "github.com/labring/aiproxy/core/model"
  4. "github.com/labring/aiproxy/core/relay/mode"
  5. )
  6. var ModelList = []model.ModelConfig{
  7. {
  8. Model: "command",
  9. Type: mode.ChatCompletions,
  10. Owner: model.ModelOwnerCohere,
  11. },
  12. {
  13. Model: "command-nightly",
  14. Type: mode.ChatCompletions,
  15. Owner: model.ModelOwnerCohere,
  16. },
  17. {
  18. Model: "command-light",
  19. Type: mode.ChatCompletions,
  20. Owner: model.ModelOwnerCohere,
  21. },
  22. {
  23. Model: "command-light-nightly",
  24. Type: mode.ChatCompletions,
  25. Owner: model.ModelOwnerCohere,
  26. },
  27. {
  28. Model: "command-r",
  29. Type: mode.ChatCompletions,
  30. Owner: model.ModelOwnerCohere,
  31. },
  32. {
  33. Model: "command-r-plus",
  34. Type: mode.ChatCompletions,
  35. Owner: model.ModelOwnerCohere,
  36. },
  37. }