model-ratio.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package common
  2. import (
  3. "encoding/json"
  4. "strings"
  5. )
  6. // ModelRatio
  7. // https://platform.openai.com/docs/models/model-endpoint-compatibility
  8. // https://cloud.baidu.com/doc/WENXINWORKSHOP/s/Blfmc9dlf
  9. // https://openai.com/pricing
  10. // TODO: when a new api is enabled, check the pricing here
  11. // 1 === $0.002 / 1K tokens
  12. // 1 === ¥0.014 / 1k tokens
  13. var ModelRatio = map[string]float64{
  14. "gpt-4": 15,
  15. "gpt-4-0314": 15,
  16. "gpt-4-0613": 15,
  17. "gpt-4-32k": 30,
  18. "gpt-4-32k-0314": 30,
  19. "gpt-4-32k-0613": 30,
  20. "gpt-3.5-turbo": 0.75, // $0.0015 / 1K tokens
  21. "gpt-3.5-turbo-0301": 0.75,
  22. "gpt-3.5-turbo-0613": 0.75,
  23. "gpt-3.5-turbo-16k": 1.5, // $0.003 / 1K tokens
  24. "gpt-3.5-turbo-16k-0613": 1.5,
  25. "text-ada-001": 0.2,
  26. "text-babbage-001": 0.25,
  27. "text-curie-001": 1,
  28. "text-davinci-002": 10,
  29. "text-davinci-003": 10,
  30. "text-davinci-edit-001": 10,
  31. "code-davinci-edit-001": 10,
  32. "whisper-1": 10,
  33. "davinci": 10,
  34. "curie": 10,
  35. "babbage": 10,
  36. "ada": 10,
  37. "text-embedding-ada-002": 0.05,
  38. "text-search-ada-doc-001": 10,
  39. "text-moderation-stable": 0.1,
  40. "text-moderation-latest": 0.1,
  41. "dall-e": 8,
  42. "claude-instant-1": 0.815, // $1.63 / 1M tokens
  43. "claude-2": 5.51, // $11.02 / 1M tokens
  44. "ERNIE-Bot": 0.8572, // ¥0.012 / 1k tokens
  45. "ERNIE-Bot-turbo": 0.5715, // ¥0.008 / 1k tokens
  46. "Embedding-V1": 0.1429, // ¥0.002 / 1k tokens
  47. "PaLM-2": 1,
  48. "chatglm_pro": 0.7143, // ¥0.01 / 1k tokens
  49. "chatglm_std": 0.3572, // ¥0.005 / 1k tokens
  50. "chatglm_lite": 0.1429, // ¥0.002 / 1k tokens
  51. "qwen-v1": 0.8572, // TBD: https://help.aliyun.com/document_detail/2399482.html?spm=a2c4g.2399482.0.0.1ad347feilAgag
  52. "qwen-plus-v1": 0.5715, // Same as above
  53. "SparkDesk": 0.8572, // TBD
  54. }
  55. func ModelRatio2JSONString() string {
  56. jsonBytes, err := json.Marshal(ModelRatio)
  57. if err != nil {
  58. SysError("error marshalling model ratio: " + err.Error())
  59. }
  60. return string(jsonBytes)
  61. }
  62. func UpdateModelRatioByJSONString(jsonStr string) error {
  63. ModelRatio = make(map[string]float64)
  64. return json.Unmarshal([]byte(jsonStr), &ModelRatio)
  65. }
  66. func GetModelRatio(name string) float64 {
  67. ratio, ok := ModelRatio[name]
  68. if !ok {
  69. SysError("model ratio not found: " + name)
  70. return 30
  71. }
  72. return ratio
  73. }
  74. func GetCompletionRatio(name string) float64 {
  75. if strings.HasPrefix(name, "gpt-3.5") {
  76. return 1.333333
  77. }
  78. if strings.HasPrefix(name, "gpt-4") {
  79. return 2
  80. }
  81. if strings.HasPrefix(name, "claude-instant-1") {
  82. return 3.38
  83. }
  84. if strings.HasPrefix(name, "claude-2") {
  85. return 2.965517
  86. }
  87. return 1
  88. }