model-ratio.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. package common
  2. import (
  3. "encoding/json"
  4. "strings"
  5. "sync"
  6. )
  7. // from songquanpeng/one-api
  8. const (
  9. USD2RMB = 7.3 // 暂定 1 USD = 7.3 RMB
  10. USD = 500 // $0.002 = 1 -> $1 = 500
  11. RMB = USD / USD2RMB
  12. )
  13. // modelRatio
  14. // https://platform.openai.com/docs/models/model-endpoint-compatibility
  15. // https://cloud.baidu.com/doc/WENXINWORKSHOP/s/Blfmc9dlf
  16. // https://openai.com/pricing
  17. // TODO: when a new api is enabled, check the pricing here
  18. // 1 === $0.002 / 1K tokens
  19. // 1 === ¥0.014 / 1k tokens
  20. var defaultModelRatio = map[string]float64{
  21. //"midjourney": 50,
  22. "gpt-4-gizmo-*": 15,
  23. "gpt-4o-gizmo-*": 2.5,
  24. "gpt-4-all": 15,
  25. "gpt-4o-all": 15,
  26. "gpt-4": 15,
  27. //"gpt-4-0314": 15, //deprecated
  28. "gpt-4-0613": 15,
  29. "gpt-4-32k": 30,
  30. //"gpt-4-32k-0314": 30, //deprecated
  31. "gpt-4-32k-0613": 30,
  32. "gpt-4-1106-preview": 5, // $0.01 / 1K tokens
  33. "gpt-4-0125-preview": 5, // $0.01 / 1K tokens
  34. "gpt-4-turbo-preview": 5, // $0.01 / 1K tokens
  35. "gpt-4-vision-preview": 5, // $0.01 / 1K tokens
  36. "gpt-4-1106-vision-preview": 5, // $0.01 / 1K tokens
  37. "chatgpt-4o-latest": 2.5, // $0.01 / 1K tokens
  38. "gpt-4o": 1.25, // $0.01 / 1K tokens
  39. "gpt-4o-audio-preview": 1.25, // $0.0015 / 1K tokens
  40. "gpt-4o-audio-preview-2024-10-01": 1.25, // $0.0015 / 1K tokens
  41. "gpt-4o-2024-08-06": 1.25, // $0.01 / 1K tokens
  42. "gpt-4o-2024-05-13": 2.5,
  43. "gpt-4o-realtime-preview": 2.5,
  44. "o1-preview": 7.5,
  45. "o1-preview-2024-09-12": 7.5,
  46. "o1-mini": 1.5,
  47. "o1-mini-2024-09-12": 1.5,
  48. "gpt-4o-mini": 0.075,
  49. "gpt-4o-mini-2024-07-18": 0.075,
  50. "gpt-4-turbo": 5, // $0.01 / 1K tokens
  51. "gpt-4-turbo-2024-04-09": 5, // $0.01 / 1K tokens
  52. //"gpt-3.5-turbo-0301": 0.75, //deprecated
  53. "gpt-3.5-turbo": 0.25,
  54. "gpt-3.5-turbo-0613": 0.75,
  55. "gpt-3.5-turbo-16k": 1.5, // $0.003 / 1K tokens
  56. "gpt-3.5-turbo-16k-0613": 1.5,
  57. "gpt-3.5-turbo-instruct": 0.75, // $0.0015 / 1K tokens
  58. "gpt-3.5-turbo-1106": 0.5, // $0.001 / 1K tokens
  59. "gpt-3.5-turbo-0125": 0.25,
  60. "babbage-002": 0.2, // $0.0004 / 1K tokens
  61. "davinci-002": 1, // $0.002 / 1K tokens
  62. "text-ada-001": 0.2,
  63. "text-babbage-001": 0.25,
  64. "text-curie-001": 1,
  65. //"text-davinci-002": 10,
  66. //"text-davinci-003": 10,
  67. "text-davinci-edit-001": 10,
  68. "code-davinci-edit-001": 10,
  69. "whisper-1": 15, // $0.006 / minute -> $0.006 / 150 words -> $0.006 / 200 tokens -> $0.03 / 1k tokens
  70. "tts-1": 7.5, // 1k characters -> $0.015
  71. "tts-1-1106": 7.5, // 1k characters -> $0.015
  72. "tts-1-hd": 15, // 1k characters -> $0.03
  73. "tts-1-hd-1106": 15, // 1k characters -> $0.03
  74. "davinci": 10,
  75. "curie": 10,
  76. "babbage": 10,
  77. "ada": 10,
  78. "text-embedding-3-small": 0.01,
  79. "text-embedding-3-large": 0.065,
  80. "text-embedding-ada-002": 0.05,
  81. "text-search-ada-doc-001": 10,
  82. "text-moderation-stable": 0.1,
  83. "text-moderation-latest": 0.1,
  84. "claude-instant-1": 0.4, // $0.8 / 1M tokens
  85. "claude-2.0": 4, // $8 / 1M tokens
  86. "claude-2.1": 4, // $8 / 1M tokens
  87. "claude-3-haiku-20240307": 0.125, // $0.25 / 1M tokens
  88. "claude-3-5-haiku-20241022": 0.5, // $1 / 1M tokens
  89. "claude-3-sonnet-20240229": 1.5, // $3 / 1M tokens
  90. "claude-3-5-sonnet-20240620": 1.5,
  91. "claude-3-5-sonnet-20241022": 1.5,
  92. "claude-3-opus-20240229": 7.5, // $15 / 1M tokens
  93. "ERNIE-4.0-8K": 0.120 * RMB,
  94. "ERNIE-3.5-8K": 0.012 * RMB,
  95. "ERNIE-3.5-8K-0205": 0.024 * RMB,
  96. "ERNIE-3.5-8K-1222": 0.012 * RMB,
  97. "ERNIE-Bot-8K": 0.024 * RMB,
  98. "ERNIE-3.5-4K-0205": 0.012 * RMB,
  99. "ERNIE-Speed-8K": 0.004 * RMB,
  100. "ERNIE-Speed-128K": 0.004 * RMB,
  101. "ERNIE-Lite-8K-0922": 0.008 * RMB,
  102. "ERNIE-Lite-8K-0308": 0.003 * RMB,
  103. "ERNIE-Tiny-8K": 0.001 * RMB,
  104. "BLOOMZ-7B": 0.004 * RMB,
  105. "Embedding-V1": 0.002 * RMB,
  106. "bge-large-zh": 0.002 * RMB,
  107. "bge-large-en": 0.002 * RMB,
  108. "tao-8k": 0.002 * RMB,
  109. "PaLM-2": 1,
  110. "gemini-pro": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
  111. "gemini-pro-vision": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
  112. "gemini-1.0-pro-vision-001": 1,
  113. "gemini-1.0-pro-001": 1,
  114. "gemini-1.5-pro-latest": 1.75, // $3.5 / 1M tokens
  115. "gemini-1.5-pro-exp-0827": 1.75, // $3.5 / 1M tokens
  116. "gemini-1.5-flash-latest": 1,
  117. "gemini-1.5-flash-exp-0827": 1,
  118. "gemini-1.0-pro-latest": 1,
  119. "gemini-1.0-pro-vision-latest": 1,
  120. "gemini-ultra": 1,
  121. "chatglm_turbo": 0.3572, // ¥0.005 / 1k tokens
  122. "chatglm_pro": 0.7143, // ¥0.01 / 1k tokens
  123. "chatglm_std": 0.3572, // ¥0.005 / 1k tokens
  124. "chatglm_lite": 0.1429, // ¥0.002 / 1k tokens
  125. "glm-4": 7.143, // ¥0.1 / 1k tokens
  126. "glm-4v": 0.05 * RMB, // ¥0.05 / 1k tokens
  127. "glm-4-alltools": 0.1 * RMB, // ¥0.1 / 1k tokens
  128. "glm-3-turbo": 0.3572,
  129. "glm-4-plus": 0.05 * RMB,
  130. "glm-4-0520": 0.1 * RMB,
  131. "glm-4-air": 0.001 * RMB,
  132. "glm-4-airx": 0.01 * RMB,
  133. "glm-4-long": 0.001 * RMB,
  134. "glm-4-flash": 0,
  135. "glm-4v-plus": 0.01 * RMB,
  136. "qwen-turbo": 0.8572, // ¥0.012 / 1k tokens
  137. "qwen-plus": 10, // ¥0.14 / 1k tokens
  138. "text-embedding-v1": 0.05, // ¥0.0007 / 1k tokens
  139. "SparkDesk-v1.1": 1.2858, // ¥0.018 / 1k tokens
  140. "SparkDesk-v2.1": 1.2858, // ¥0.018 / 1k tokens
  141. "SparkDesk-v3.1": 1.2858, // ¥0.018 / 1k tokens
  142. "SparkDesk-v3.5": 1.2858, // ¥0.018 / 1k tokens
  143. "SparkDesk-v4.0": 1.2858,
  144. "360GPT_S2_V9": 0.8572, // ¥0.012 / 1k tokens
  145. "360gpt-turbo": 0.0858, // ¥0.0012 / 1k tokens
  146. "360gpt-turbo-responsibility-8k": 0.8572, // ¥0.012 / 1k tokens
  147. "360gpt-pro": 0.8572, // ¥0.012 / 1k tokens
  148. "embedding-bert-512-v1": 0.0715, // ¥0.001 / 1k tokens
  149. "embedding_s1_v1": 0.0715, // ¥0.001 / 1k tokens
  150. "semantic_similarity_s1_v1": 0.0715, // ¥0.001 / 1k tokens
  151. "hunyuan": 7.143, // ¥0.1 / 1k tokens // https://cloud.tencent.com/document/product/1729/97731#e0e6be58-60c8-469f-bdeb-6c264ce3b4d0
  152. // https://platform.lingyiwanwu.com/docs#-计费单元
  153. // 已经按照 7.2 来换算美元价格
  154. "yi-34b-chat-0205": 0.18,
  155. "yi-34b-chat-200k": 0.864,
  156. "yi-vl-plus": 0.432,
  157. "yi-large": 20.0 / 1000 * RMB,
  158. "yi-medium": 2.5 / 1000 * RMB,
  159. "yi-vision": 6.0 / 1000 * RMB,
  160. "yi-medium-200k": 12.0 / 1000 * RMB,
  161. "yi-spark": 1.0 / 1000 * RMB,
  162. "yi-large-rag": 25.0 / 1000 * RMB,
  163. "yi-large-turbo": 12.0 / 1000 * RMB,
  164. "yi-large-preview": 20.0 / 1000 * RMB,
  165. "yi-large-rag-preview": 25.0 / 1000 * RMB,
  166. "command": 0.5,
  167. "command-nightly": 0.5,
  168. "command-light": 0.5,
  169. "command-light-nightly": 0.5,
  170. "command-r": 0.25,
  171. "command-r-plus": 1.5,
  172. "command-r-08-2024": 0.075,
  173. "command-r-plus-08-2024": 1.25,
  174. "deepseek-chat": 0.07,
  175. "deepseek-coder": 0.07,
  176. // Perplexity online 模型对搜索额外收费,有需要应自行调整,此处不计入搜索费用
  177. "llama-3-sonar-small-32k-chat": 0.2 / 1000 * USD,
  178. "llama-3-sonar-small-32k-online": 0.2 / 1000 * USD,
  179. "llama-3-sonar-large-32k-chat": 1 / 1000 * USD,
  180. "llama-3-sonar-large-32k-online": 1 / 1000 * USD,
  181. }
  182. var defaultModelPrice = map[string]float64{
  183. "suno_music": 0.1,
  184. "suno_lyrics": 0.01,
  185. "dall-e-3": 0.04,
  186. "gpt-4-gizmo-*": 0.1,
  187. "mj_imagine": 0.1,
  188. "mj_variation": 0.1,
  189. "mj_reroll": 0.1,
  190. "mj_blend": 0.1,
  191. "mj_modal": 0.1,
  192. "mj_zoom": 0.1,
  193. "mj_shorten": 0.1,
  194. "mj_high_variation": 0.1,
  195. "mj_low_variation": 0.1,
  196. "mj_pan": 0.1,
  197. "mj_inpaint": 0,
  198. "mj_custom_zoom": 0,
  199. "mj_describe": 0.05,
  200. "mj_upscale": 0.05,
  201. "swap_face": 0.05,
  202. "mj_upload": 0.05,
  203. }
  204. var (
  205. modelPriceMap map[string]float64 = nil
  206. modelPriceMapMutex = sync.RWMutex{}
  207. )
  208. var (
  209. modelRatioMap map[string]float64 = nil
  210. modelRatioMapMutex = sync.RWMutex{}
  211. )
  212. var CompletionRatio map[string]float64 = nil
  213. var defaultCompletionRatio = map[string]float64{
  214. "gpt-4-gizmo-*": 2,
  215. "gpt-4o-gizmo-*": 3,
  216. "gpt-4-all": 2,
  217. }
  218. func GetModelPriceMap() map[string]float64 {
  219. modelPriceMapMutex.Lock()
  220. defer modelPriceMapMutex.Unlock()
  221. if modelPriceMap == nil {
  222. modelPriceMap = defaultModelPrice
  223. }
  224. return modelPriceMap
  225. }
  226. func ModelPrice2JSONString() string {
  227. GetModelPriceMap()
  228. jsonBytes, err := json.Marshal(modelPriceMap)
  229. if err != nil {
  230. SysError("error marshalling model price: " + err.Error())
  231. }
  232. return string(jsonBytes)
  233. }
  234. func UpdateModelPriceByJSONString(jsonStr string) error {
  235. modelPriceMapMutex.Lock()
  236. defer modelPriceMapMutex.Unlock()
  237. modelPriceMap = make(map[string]float64)
  238. return json.Unmarshal([]byte(jsonStr), &modelPriceMap)
  239. }
  240. // GetModelPrice 返回模型的价格,如果模型不存在则返回-1,false
  241. func GetModelPrice(name string, printErr bool) (float64, bool) {
  242. GetModelPriceMap()
  243. if strings.HasPrefix(name, "gpt-4-gizmo") {
  244. name = "gpt-4-gizmo-*"
  245. }
  246. if strings.HasPrefix(name, "gpt-4o-gizmo") {
  247. name = "gpt-4o-gizmo-*"
  248. }
  249. price, ok := modelPriceMap[name]
  250. if !ok {
  251. if printErr {
  252. SysError("model price not found: " + name)
  253. }
  254. return -1, false
  255. }
  256. return price, true
  257. }
  258. func GetModelRatioMap() map[string]float64 {
  259. modelRatioMapMutex.Lock()
  260. defer modelRatioMapMutex.Unlock()
  261. if modelRatioMap == nil {
  262. modelRatioMap = defaultModelRatio
  263. }
  264. return modelRatioMap
  265. }
  266. func ModelRatio2JSONString() string {
  267. GetModelRatioMap()
  268. jsonBytes, err := json.Marshal(modelRatioMap)
  269. if err != nil {
  270. SysError("error marshalling model ratio: " + err.Error())
  271. }
  272. return string(jsonBytes)
  273. }
  274. func UpdateModelRatioByJSONString(jsonStr string) error {
  275. modelRatioMapMutex.Lock()
  276. defer modelRatioMapMutex.Unlock()
  277. modelRatioMap = make(map[string]float64)
  278. return json.Unmarshal([]byte(jsonStr), &modelRatioMap)
  279. }
  280. func GetModelRatio(name string) float64 {
  281. GetModelRatioMap()
  282. if strings.HasPrefix(name, "gpt-4-gizmo") {
  283. name = "gpt-4-gizmo-*"
  284. }
  285. ratio, ok := modelRatioMap[name]
  286. if !ok {
  287. SysError("model ratio not found: " + name)
  288. return 30
  289. }
  290. return ratio
  291. }
  292. func DefaultModelRatio2JSONString() string {
  293. jsonBytes, err := json.Marshal(defaultModelRatio)
  294. if err != nil {
  295. SysError("error marshalling model ratio: " + err.Error())
  296. }
  297. return string(jsonBytes)
  298. }
  299. func GetDefaultModelRatioMap() map[string]float64 {
  300. return defaultModelRatio
  301. }
  302. func CompletionRatio2JSONString() string {
  303. if CompletionRatio == nil {
  304. CompletionRatio = defaultCompletionRatio
  305. }
  306. jsonBytes, err := json.Marshal(CompletionRatio)
  307. if err != nil {
  308. SysError("error marshalling completion ratio: " + err.Error())
  309. }
  310. return string(jsonBytes)
  311. }
  312. func UpdateCompletionRatioByJSONString(jsonStr string) error {
  313. CompletionRatio = make(map[string]float64)
  314. return json.Unmarshal([]byte(jsonStr), &CompletionRatio)
  315. }
  316. func GetCompletionRatio(name string) float64 {
  317. if strings.HasPrefix(name, "gpt-4-gizmo") {
  318. name = "gpt-4-gizmo-*"
  319. }
  320. if strings.HasPrefix(name, "gpt-4o-gizmo") {
  321. name = "gpt-4o-gizmo-*"
  322. }
  323. if strings.HasPrefix(name, "gpt-4") && !strings.HasSuffix(name, "-all") && !strings.HasSuffix(name, "-gizmo-*") {
  324. if strings.HasPrefix(name, "gpt-4o") {
  325. if name == "gpt-4o-2024-05-13" {
  326. return 3
  327. }
  328. return 4
  329. }
  330. if strings.HasPrefix(name, "gpt-4-turbo") || strings.HasSuffix(name, "preview") {
  331. return 3
  332. }
  333. return 2
  334. }
  335. if strings.HasPrefix(name, "o1-") {
  336. return 4
  337. }
  338. if name == "chatgpt-4o-latest" {
  339. return 3
  340. }
  341. if strings.Contains(name, "claude-instant-1") {
  342. return 3
  343. } else if strings.Contains(name, "claude-2") {
  344. return 3
  345. } else if strings.Contains(name, "claude-3") {
  346. return 5
  347. }
  348. if strings.HasPrefix(name, "gpt-3.5") {
  349. if name == "gpt-3.5-turbo" || strings.HasSuffix(name, "0125") {
  350. // https://openai.com/blog/new-embedding-models-and-api-updates
  351. // Updated GPT-3.5 Turbo model and lower pricing
  352. return 3
  353. }
  354. if strings.HasSuffix(name, "1106") {
  355. return 2
  356. }
  357. return 4.0 / 3.0
  358. }
  359. if strings.HasPrefix(name, "mistral-") {
  360. return 3
  361. }
  362. if strings.HasPrefix(name, "gemini-") {
  363. return 4
  364. }
  365. if strings.HasPrefix(name, "command") {
  366. switch name {
  367. case "command-r":
  368. return 3
  369. case "command-r-plus":
  370. return 5
  371. case "command-r-08-2024":
  372. return 4
  373. case "command-r-plus-08-2024":
  374. return 4
  375. default:
  376. return 2
  377. }
  378. }
  379. if strings.HasPrefix(name, "deepseek") {
  380. return 2
  381. }
  382. if strings.HasPrefix(name, "ERNIE-Speed-") {
  383. return 2
  384. } else if strings.HasPrefix(name, "ERNIE-Lite-") {
  385. return 2
  386. } else if strings.HasPrefix(name, "ERNIE-Character") {
  387. return 2
  388. } else if strings.HasPrefix(name, "ERNIE-Functions") {
  389. return 2
  390. }
  391. switch name {
  392. case "llama2-70b-4096":
  393. return 0.8 / 0.64
  394. case "llama3-8b-8192":
  395. return 2
  396. case "llama3-70b-8192":
  397. return 0.79 / 0.59
  398. }
  399. if ratio, ok := CompletionRatio[name]; ok {
  400. return ratio
  401. }
  402. return 1
  403. }
  404. func GetAudioRatio(name string) float64 {
  405. if strings.HasPrefix(name, "gpt-4o-realtime") {
  406. return 20
  407. } else if strings.HasPrefix(name, "gpt-4o-audio") {
  408. return 40
  409. }
  410. return 20
  411. }
  412. func GetAudioCompletionRatio(name string) float64 {
  413. if strings.HasPrefix(name, "gpt-4o-realtime") {
  414. return 2
  415. }
  416. return 2
  417. }
  418. //func GetAudioPricePerMinute(name string) float64 {
  419. // if strings.HasPrefix(name, "gpt-4o-realtime") {
  420. // return 0.06
  421. // }
  422. // return 0.06
  423. //}
  424. //
  425. //func GetAudioCompletionPricePerMinute(name string) float64 {
  426. // if strings.HasPrefix(name, "gpt-4o-realtime") {
  427. // return 0.24
  428. // }
  429. // return 0.24
  430. //}
  431. func GetCompletionRatioMap() map[string]float64 {
  432. if CompletionRatio == nil {
  433. CompletionRatio = defaultCompletionRatio
  434. }
  435. return CompletionRatio
  436. }