2023-05-11 20:59:35 +08:00
|
|
|
|
package common
|
|
|
|
|
|
|
2023-08-19 16:58:34 +08:00
|
|
|
|
import (
|
|
|
|
|
|
"encoding/json"
|
|
|
|
|
|
"strings"
|
2024-07-27 18:09:09 +08:00
|
|
|
|
"sync"
|
2023-08-19 16:58:34 +08:00
|
|
|
|
)
|
2023-05-11 20:59:35 +08:00
|
|
|
|
|
2024-05-18 17:51:53 +08:00
|
|
|
|
// from songquanpeng/one-api
|
2024-05-17 19:37:18 +08:00
|
|
|
|
const (
|
|
|
|
|
|
USD2RMB = 7.3 // 暂定 1 USD = 7.3 RMB
|
|
|
|
|
|
USD = 500 // $0.002 = 1 -> $1 = 500
|
|
|
|
|
|
RMB = USD / USD2RMB
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2024-03-23 17:19:29 +08:00
|
|
|
|
// modelRatio
|
2023-05-11 20:59:35 +08:00
|
|
|
|
// https://platform.openai.com/docs/models/model-endpoint-compatibility
|
2023-07-22 23:24:09 +08:00
|
|
|
|
// https://cloud.baidu.com/doc/WENXINWORKSHOP/s/Blfmc9dlf
|
2023-05-11 20:59:35 +08:00
|
|
|
|
// https://openai.com/pricing
|
|
|
|
|
|
// TODO: when a new api is enabled, check the pricing here
|
2023-06-14 09:41:06 +08:00
|
|
|
|
// 1 === $0.002 / 1K tokens
|
2023-07-23 11:51:44 +08:00
|
|
|
|
// 1 === ¥0.014 / 1k tokens
|
2024-04-22 16:35:56 +08:00
|
|
|
|
|
2024-05-24 15:28:16 +08:00
|
|
|
|
var defaultModelRatio = map[string]float64{
|
2024-01-01 22:46:05 +08:00
|
|
|
|
//"midjourney": 50,
|
2024-08-16 17:25:03 +08:00
|
|
|
|
"gpt-4-gizmo-*": 15,
|
|
|
|
|
|
"gpt-4o-gizmo-*": 2.5,
|
|
|
|
|
|
"gpt-4-all": 15,
|
|
|
|
|
|
"gpt-4o-all": 15,
|
|
|
|
|
|
"gpt-4": 15,
|
2024-04-22 16:35:56 +08:00
|
|
|
|
//"gpt-4-0314": 15, //deprecated
|
|
|
|
|
|
"gpt-4-0613": 15,
|
|
|
|
|
|
"gpt-4-32k": 30,
|
|
|
|
|
|
//"gpt-4-32k-0314": 30, //deprecated
|
2025-01-03 18:51:09 +08:00
|
|
|
|
"gpt-4-32k-0613": 30,
|
|
|
|
|
|
"gpt-4-1106-preview": 5, // $10 / 1M tokens
|
|
|
|
|
|
"gpt-4-0125-preview": 5, // $10 / 1M tokens
|
|
|
|
|
|
"gpt-4-turbo-preview": 5, // $10 / 1M tokens
|
|
|
|
|
|
"gpt-4-vision-preview": 5, // $10 / 1M tokens
|
|
|
|
|
|
"gpt-4-1106-vision-preview": 5, // $10 / 1M tokens
|
|
|
|
|
|
"chatgpt-4o-latest": 2.5, // $5 / 1M tokens
|
|
|
|
|
|
"gpt-4o": 1.25, // $2.5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-audio-preview": 1.25, // $2.5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-audio-preview-2024-10-01": 1.25, // $2.5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-2024-05-13": 2.5, // $5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-2024-08-06": 1.25, // $2.5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-2024-11-20": 1.25, // $2.5 / 1M tokens
|
|
|
|
|
|
"gpt-4o-realtime-preview": 2.5,
|
|
|
|
|
|
"gpt-4o-realtime-preview-2024-10-01": 2.5,
|
|
|
|
|
|
"gpt-4o-realtime-preview-2024-12-17": 2.5,
|
|
|
|
|
|
"gpt-4o-mini-realtime-preview": 0.3,
|
|
|
|
|
|
"gpt-4o-mini-realtime-preview-2024-12-17": 0.3,
|
2025-02-03 14:22:34 +08:00
|
|
|
|
"o1": 7.5,
|
|
|
|
|
|
"o1-2024-12-17": 7.5,
|
|
|
|
|
|
"o1-preview": 7.5,
|
|
|
|
|
|
"o1-preview-2024-09-12": 7.5,
|
|
|
|
|
|
"o1-mini": 0.55,
|
|
|
|
|
|
"o1-mini-2024-09-12": 0.55,
|
|
|
|
|
|
"o3-mini": 0.55,
|
|
|
|
|
|
"o3-mini-2025-01-31": 0.55,
|
|
|
|
|
|
"o3-mini-high": 0.55,
|
|
|
|
|
|
"o3-mini-2025-01-31-high": 0.55,
|
|
|
|
|
|
"o3-mini-low": 0.55,
|
|
|
|
|
|
"o3-mini-2025-01-31-low": 0.55,
|
|
|
|
|
|
"o3-mini-medium": 0.55,
|
|
|
|
|
|
"o3-mini-2025-01-31-medium": 0.55,
|
|
|
|
|
|
"gpt-4o-mini": 0.075,
|
|
|
|
|
|
"gpt-4o-mini-2024-07-18": 0.075,
|
|
|
|
|
|
"gpt-4-turbo": 5, // $0.01 / 1K tokens
|
|
|
|
|
|
"gpt-4-turbo-2024-04-09": 5, // $0.01 / 1K tokens
|
2024-04-22 16:35:56 +08:00
|
|
|
|
//"gpt-3.5-turbo-0301": 0.75, //deprecated
|
2024-11-07 16:12:09 +08:00
|
|
|
|
"gpt-3.5-turbo": 0.25,
|
2024-05-24 00:08:41 +08:00
|
|
|
|
"gpt-3.5-turbo-0613": 0.75,
|
|
|
|
|
|
"gpt-3.5-turbo-16k": 1.5, // $0.003 / 1K tokens
|
|
|
|
|
|
"gpt-3.5-turbo-16k-0613": 1.5,
|
|
|
|
|
|
"gpt-3.5-turbo-instruct": 0.75, // $0.0015 / 1K tokens
|
|
|
|
|
|
"gpt-3.5-turbo-1106": 0.5, // $0.001 / 1K tokens
|
|
|
|
|
|
"gpt-3.5-turbo-0125": 0.25,
|
|
|
|
|
|
"babbage-002": 0.2, // $0.0004 / 1K tokens
|
|
|
|
|
|
"davinci-002": 1, // $0.002 / 1K tokens
|
|
|
|
|
|
"text-ada-001": 0.2,
|
|
|
|
|
|
"text-babbage-001": 0.25,
|
|
|
|
|
|
"text-curie-001": 1,
|
|
|
|
|
|
//"text-davinci-002": 10,
|
|
|
|
|
|
//"text-davinci-003": 10,
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"text-davinci-edit-001": 10,
|
|
|
|
|
|
"code-davinci-edit-001": 10,
|
|
|
|
|
|
"whisper-1": 15, // $0.006 / minute -> $0.006 / 150 words -> $0.006 / 200 tokens -> $0.03 / 1k tokens
|
|
|
|
|
|
"tts-1": 7.5, // 1k characters -> $0.015
|
|
|
|
|
|
"tts-1-1106": 7.5, // 1k characters -> $0.015
|
|
|
|
|
|
"tts-1-hd": 15, // 1k characters -> $0.03
|
|
|
|
|
|
"tts-1-hd-1106": 15, // 1k characters -> $0.03
|
|
|
|
|
|
"davinci": 10,
|
|
|
|
|
|
"curie": 10,
|
|
|
|
|
|
"babbage": 10,
|
|
|
|
|
|
"ada": 10,
|
|
|
|
|
|
"text-embedding-3-small": 0.01,
|
|
|
|
|
|
"text-embedding-3-large": 0.065,
|
|
|
|
|
|
"text-embedding-ada-002": 0.05,
|
|
|
|
|
|
"text-search-ada-doc-001": 10,
|
|
|
|
|
|
"text-moderation-stable": 0.1,
|
|
|
|
|
|
"text-moderation-latest": 0.1,
|
2024-06-25 10:04:17 +08:00
|
|
|
|
"claude-instant-1": 0.4, // $0.8 / 1M tokens
|
|
|
|
|
|
"claude-2.0": 4, // $8 / 1M tokens
|
|
|
|
|
|
"claude-2.1": 4, // $8 / 1M tokens
|
|
|
|
|
|
"claude-3-haiku-20240307": 0.125, // $0.25 / 1M tokens
|
2024-11-05 10:17:11 +08:00
|
|
|
|
"claude-3-5-haiku-20241022": 0.5, // $1 / 1M tokens
|
2024-06-25 10:04:17 +08:00
|
|
|
|
"claude-3-sonnet-20240229": 1.5, // $3 / 1M tokens
|
|
|
|
|
|
"claude-3-5-sonnet-20240620": 1.5,
|
2024-10-24 00:17:23 +08:00
|
|
|
|
"claude-3-5-sonnet-20241022": 1.5,
|
2024-07-05 20:22:30 +08:00
|
|
|
|
"claude-3-opus-20240229": 7.5, // $15 / 1M tokens
|
|
|
|
|
|
"ERNIE-4.0-8K": 0.120 * RMB,
|
|
|
|
|
|
"ERNIE-3.5-8K": 0.012 * RMB,
|
|
|
|
|
|
"ERNIE-3.5-8K-0205": 0.024 * RMB,
|
|
|
|
|
|
"ERNIE-3.5-8K-1222": 0.012 * RMB,
|
|
|
|
|
|
"ERNIE-Bot-8K": 0.024 * RMB,
|
|
|
|
|
|
"ERNIE-3.5-4K-0205": 0.012 * RMB,
|
|
|
|
|
|
"ERNIE-Speed-8K": 0.004 * RMB,
|
|
|
|
|
|
"ERNIE-Speed-128K": 0.004 * RMB,
|
|
|
|
|
|
"ERNIE-Lite-8K-0922": 0.008 * RMB,
|
|
|
|
|
|
"ERNIE-Lite-8K-0308": 0.003 * RMB,
|
|
|
|
|
|
"ERNIE-Tiny-8K": 0.001 * RMB,
|
|
|
|
|
|
"BLOOMZ-7B": 0.004 * RMB,
|
|
|
|
|
|
"Embedding-V1": 0.002 * RMB,
|
|
|
|
|
|
"bge-large-zh": 0.002 * RMB,
|
|
|
|
|
|
"bge-large-en": 0.002 * RMB,
|
|
|
|
|
|
"tao-8k": 0.002 * RMB,
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"PaLM-2": 1,
|
|
|
|
|
|
"gemini-pro": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
|
|
|
|
|
|
"gemini-pro-vision": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
|
|
|
|
|
|
"gemini-1.0-pro-vision-001": 1,
|
|
|
|
|
|
"gemini-1.0-pro-001": 1,
|
2024-09-11 19:37:03 +08:00
|
|
|
|
"gemini-1.5-pro-latest": 1.75, // $3.5 / 1M tokens
|
|
|
|
|
|
"gemini-1.5-pro-exp-0827": 1.75, // $3.5 / 1M tokens
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"gemini-1.5-flash-latest": 1,
|
2024-09-11 19:37:03 +08:00
|
|
|
|
"gemini-1.5-flash-exp-0827": 1,
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"gemini-1.0-pro-latest": 1,
|
|
|
|
|
|
"gemini-1.0-pro-vision-latest": 1,
|
|
|
|
|
|
"gemini-ultra": 1,
|
2024-07-15 22:07:50 +08:00
|
|
|
|
"chatglm_turbo": 0.3572, // ¥0.005 / 1k tokens
|
|
|
|
|
|
"chatglm_pro": 0.7143, // ¥0.01 / 1k tokens
|
|
|
|
|
|
"chatglm_std": 0.3572, // ¥0.005 / 1k tokens
|
|
|
|
|
|
"chatglm_lite": 0.1429, // ¥0.002 / 1k tokens
|
|
|
|
|
|
"glm-4": 7.143, // ¥0.1 / 1k tokens
|
|
|
|
|
|
"glm-4v": 0.05 * RMB, // ¥0.05 / 1k tokens
|
|
|
|
|
|
"glm-4-alltools": 0.1 * RMB, // ¥0.1 / 1k tokens
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"glm-3-turbo": 0.3572,
|
2024-08-31 10:20:22 +08:00
|
|
|
|
"glm-4-plus": 0.05 * RMB,
|
|
|
|
|
|
"glm-4-0520": 0.1 * RMB,
|
|
|
|
|
|
"glm-4-air": 0.001 * RMB,
|
|
|
|
|
|
"glm-4-airx": 0.01 * RMB,
|
|
|
|
|
|
"glm-4-long": 0.001 * RMB,
|
|
|
|
|
|
"glm-4-flash": 0,
|
|
|
|
|
|
"glm-4v-plus": 0.01 * RMB,
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"qwen-turbo": 0.8572, // ¥0.012 / 1k tokens
|
|
|
|
|
|
"qwen-plus": 10, // ¥0.14 / 1k tokens
|
|
|
|
|
|
"text-embedding-v1": 0.05, // ¥0.0007 / 1k tokens
|
|
|
|
|
|
"SparkDesk-v1.1": 1.2858, // ¥0.018 / 1k tokens
|
|
|
|
|
|
"SparkDesk-v2.1": 1.2858, // ¥0.018 / 1k tokens
|
|
|
|
|
|
"SparkDesk-v3.1": 1.2858, // ¥0.018 / 1k tokens
|
|
|
|
|
|
"SparkDesk-v3.5": 1.2858, // ¥0.018 / 1k tokens
|
2024-06-27 16:22:31 +08:00
|
|
|
|
"SparkDesk-v4.0": 1.2858,
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"360GPT_S2_V9": 0.8572, // ¥0.012 / 1k tokens
|
|
|
|
|
|
"360gpt-turbo": 0.0858, // ¥0.0012 / 1k tokens
|
2024-05-16 14:05:44 +08:00
|
|
|
|
"360gpt-turbo-responsibility-8k": 0.8572, // ¥0.012 / 1k tokens
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"360gpt-pro": 0.8572, // ¥0.012 / 1k tokens
|
2024-12-02 15:59:08 +00:00
|
|
|
|
"360gpt2-pro": 0.8572, // ¥0.012 / 1k tokens
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"embedding-bert-512-v1": 0.0715, // ¥0.001 / 1k tokens
|
|
|
|
|
|
"embedding_s1_v1": 0.0715, // ¥0.001 / 1k tokens
|
|
|
|
|
|
"semantic_similarity_s1_v1": 0.0715, // ¥0.001 / 1k tokens
|
|
|
|
|
|
"hunyuan": 7.143, // ¥0.1 / 1k tokens // https://cloud.tencent.com/document/product/1729/97731#e0e6be58-60c8-469f-bdeb-6c264ce3b4d0
|
2024-03-20 23:44:03 +08:00
|
|
|
|
// https://platform.lingyiwanwu.com/docs#-计费单元
|
|
|
|
|
|
// 已经按照 7.2 来换算美元价格
|
2024-09-01 15:21:05 +07:00
|
|
|
|
"yi-34b-chat-0205": 0.18,
|
|
|
|
|
|
"yi-34b-chat-200k": 0.864,
|
|
|
|
|
|
"yi-vl-plus": 0.432,
|
|
|
|
|
|
"yi-large": 20.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-medium": 2.5 / 1000 * RMB,
|
|
|
|
|
|
"yi-vision": 6.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-medium-200k": 12.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-spark": 1.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-large-rag": 25.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-large-turbo": 12.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-large-preview": 20.0 / 1000 * RMB,
|
|
|
|
|
|
"yi-large-rag-preview": 25.0 / 1000 * RMB,
|
|
|
|
|
|
"command": 0.5,
|
|
|
|
|
|
"command-nightly": 0.5,
|
|
|
|
|
|
"command-light": 0.5,
|
|
|
|
|
|
"command-light-nightly": 0.5,
|
|
|
|
|
|
"command-r": 0.25,
|
|
|
|
|
|
"command-r-plus": 1.5,
|
|
|
|
|
|
"command-r-08-2024": 0.075,
|
|
|
|
|
|
"command-r-plus-08-2024": 1.25,
|
|
|
|
|
|
"deepseek-chat": 0.07,
|
|
|
|
|
|
"deepseek-coder": 0.07,
|
2024-05-17 19:37:18 +08:00
|
|
|
|
// Perplexity online 模型对搜索额外收费,有需要应自行调整,此处不计入搜索费用
|
2024-05-18 17:51:53 +08:00
|
|
|
|
"llama-3-sonar-small-32k-chat": 0.2 / 1000 * USD,
|
|
|
|
|
|
"llama-3-sonar-small-32k-online": 0.2 / 1000 * USD,
|
|
|
|
|
|
"llama-3-sonar-large-32k-chat": 1 / 1000 * USD,
|
|
|
|
|
|
"llama-3-sonar-large-32k-online": 1 / 1000 * USD,
|
2023-05-11 20:59:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-05-24 15:28:16 +08:00
|
|
|
|
var defaultModelPrice = map[string]float64{
|
2024-07-16 14:54:03 +08:00
|
|
|
|
"suno_music": 0.1,
|
|
|
|
|
|
"suno_lyrics": 0.01,
|
2024-05-13 16:04:02 +08:00
|
|
|
|
"dall-e-3": 0.04,
|
2024-03-13 21:19:48 +08:00
|
|
|
|
"gpt-4-gizmo-*": 0.1,
|
|
|
|
|
|
"mj_imagine": 0.1,
|
|
|
|
|
|
"mj_variation": 0.1,
|
|
|
|
|
|
"mj_reroll": 0.1,
|
|
|
|
|
|
"mj_blend": 0.1,
|
2024-03-14 16:42:37 +08:00
|
|
|
|
"mj_modal": 0.1,
|
2024-03-13 21:19:48 +08:00
|
|
|
|
"mj_zoom": 0.1,
|
|
|
|
|
|
"mj_shorten": 0.1,
|
|
|
|
|
|
"mj_high_variation": 0.1,
|
|
|
|
|
|
"mj_low_variation": 0.1,
|
|
|
|
|
|
"mj_pan": 0.1,
|
2024-03-14 16:42:37 +08:00
|
|
|
|
"mj_inpaint": 0,
|
|
|
|
|
|
"mj_custom_zoom": 0,
|
2024-03-13 21:19:48 +08:00
|
|
|
|
"mj_describe": 0.05,
|
|
|
|
|
|
"mj_upscale": 0.05,
|
|
|
|
|
|
"swap_face": 0.05,
|
2024-07-31 15:48:51 +08:00
|
|
|
|
"mj_upload": 0.05,
|
2023-12-21 20:14:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-07-27 18:09:09 +08:00
|
|
|
|
var (
|
2024-08-16 17:25:03 +08:00
|
|
|
|
modelPriceMap map[string]float64 = nil
|
|
|
|
|
|
modelPriceMapMutex = sync.RWMutex{}
|
2024-07-27 18:09:09 +08:00
|
|
|
|
)
|
|
|
|
|
|
var (
|
|
|
|
|
|
modelRatioMap map[string]float64 = nil
|
|
|
|
|
|
modelRatioMapMutex = sync.RWMutex{}
|
|
|
|
|
|
)
|
2024-03-13 21:19:48 +08:00
|
|
|
|
|
2024-05-12 20:15:56 +08:00
|
|
|
|
var CompletionRatio map[string]float64 = nil
|
2024-05-24 15:28:16 +08:00
|
|
|
|
var defaultCompletionRatio = map[string]float64{
|
2024-08-16 17:25:03 +08:00
|
|
|
|
"gpt-4-gizmo-*": 2,
|
|
|
|
|
|
"gpt-4o-gizmo-*": 3,
|
|
|
|
|
|
"gpt-4-all": 2,
|
2024-05-12 20:15:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-07-27 18:09:09 +08:00
|
|
|
|
func GetModelPriceMap() map[string]float64 {
|
|
|
|
|
|
modelPriceMapMutex.Lock()
|
|
|
|
|
|
defer modelPriceMapMutex.Unlock()
|
|
|
|
|
|
if modelPriceMap == nil {
|
|
|
|
|
|
modelPriceMap = defaultModelPrice
|
2024-03-13 21:19:48 +08:00
|
|
|
|
}
|
2024-07-27 18:09:09 +08:00
|
|
|
|
return modelPriceMap
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func ModelPrice2JSONString() string {
|
|
|
|
|
|
GetModelPriceMap()
|
|
|
|
|
|
jsonBytes, err := json.Marshal(modelPriceMap)
|
2023-12-21 20:14:04 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
SysError("error marshalling model price: " + err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
return string(jsonBytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func UpdateModelPriceByJSONString(jsonStr string) error {
|
2024-07-27 18:09:09 +08:00
|
|
|
|
modelPriceMapMutex.Lock()
|
|
|
|
|
|
defer modelPriceMapMutex.Unlock()
|
|
|
|
|
|
modelPriceMap = make(map[string]float64)
|
|
|
|
|
|
return json.Unmarshal([]byte(jsonStr), &modelPriceMap)
|
2023-12-21 20:14:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-05-13 16:04:02 +08:00
|
|
|
|
// GetModelPrice 返回模型的价格,如果模型不存在则返回-1,false
|
|
|
|
|
|
func GetModelPrice(name string, printErr bool) (float64, bool) {
|
2024-07-27 18:09:09 +08:00
|
|
|
|
GetModelPriceMap()
|
2023-12-21 20:14:04 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4-gizmo") {
|
|
|
|
|
|
name = "gpt-4-gizmo-*"
|
|
|
|
|
|
}
|
2024-08-16 17:25:03 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4o-gizmo") {
|
|
|
|
|
|
name = "gpt-4o-gizmo-*"
|
|
|
|
|
|
}
|
2024-07-27 18:09:09 +08:00
|
|
|
|
price, ok := modelPriceMap[name]
|
2023-12-21 20:14:04 +08:00
|
|
|
|
if !ok {
|
2024-01-25 14:56:49 +08:00
|
|
|
|
if printErr {
|
|
|
|
|
|
SysError("model price not found: " + name)
|
|
|
|
|
|
}
|
2024-05-13 16:04:02 +08:00
|
|
|
|
return -1, false
|
2023-12-21 20:14:04 +08:00
|
|
|
|
}
|
2024-05-13 16:04:02 +08:00
|
|
|
|
return price, true
|
2023-12-21 20:14:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-07-27 18:09:09 +08:00
|
|
|
|
func GetModelRatioMap() map[string]float64 {
|
|
|
|
|
|
modelRatioMapMutex.Lock()
|
|
|
|
|
|
defer modelRatioMapMutex.Unlock()
|
|
|
|
|
|
if modelRatioMap == nil {
|
|
|
|
|
|
modelRatioMap = defaultModelRatio
|
2024-05-13 23:02:35 +08:00
|
|
|
|
}
|
2024-07-27 18:09:09 +08:00
|
|
|
|
return modelRatioMap
|
2024-05-13 23:02:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-11 20:59:35 +08:00
|
|
|
|
func ModelRatio2JSONString() string {
|
2024-07-27 18:09:09 +08:00
|
|
|
|
GetModelRatioMap()
|
|
|
|
|
|
jsonBytes, err := json.Marshal(modelRatioMap)
|
2023-05-11 20:59:35 +08:00
|
|
|
|
if err != nil {
|
2023-06-22 10:59:01 +08:00
|
|
|
|
SysError("error marshalling model ratio: " + err.Error())
|
2023-05-11 20:59:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
return string(jsonBytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func UpdateModelRatioByJSONString(jsonStr string) error {
|
2024-07-27 18:09:09 +08:00
|
|
|
|
modelRatioMapMutex.Lock()
|
|
|
|
|
|
defer modelRatioMapMutex.Unlock()
|
|
|
|
|
|
modelRatioMap = make(map[string]float64)
|
|
|
|
|
|
return json.Unmarshal([]byte(jsonStr), &modelRatioMap)
|
2023-05-11 20:59:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func GetModelRatio(name string) float64 {
|
2024-07-27 18:09:09 +08:00
|
|
|
|
GetModelRatioMap()
|
2023-12-13 00:29:53 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4-gizmo") {
|
|
|
|
|
|
name = "gpt-4-gizmo-*"
|
|
|
|
|
|
}
|
2024-07-27 18:09:09 +08:00
|
|
|
|
ratio, ok := modelRatioMap[name]
|
2023-05-11 20:59:35 +08:00
|
|
|
|
if !ok {
|
2023-06-22 10:59:01 +08:00
|
|
|
|
SysError("model ratio not found: " + name)
|
2023-06-18 22:28:28 +08:00
|
|
|
|
return 30
|
2023-05-11 20:59:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ratio
|
|
|
|
|
|
}
|
2023-08-19 16:58:34 +08:00
|
|
|
|
|
2024-05-24 15:28:16 +08:00
|
|
|
|
func DefaultModelRatio2JSONString() string {
|
|
|
|
|
|
jsonBytes, err := json.Marshal(defaultModelRatio)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
SysError("error marshalling model ratio: " + err.Error())
|
2024-05-13 23:02:35 +08:00
|
|
|
|
}
|
2024-05-24 15:28:16 +08:00
|
|
|
|
return string(jsonBytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func GetDefaultModelRatioMap() map[string]float64 {
|
|
|
|
|
|
return defaultModelRatio
|
2024-05-13 23:02:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-05-12 20:15:56 +08:00
|
|
|
|
func CompletionRatio2JSONString() string {
|
|
|
|
|
|
if CompletionRatio == nil {
|
2024-05-24 15:28:16 +08:00
|
|
|
|
CompletionRatio = defaultCompletionRatio
|
2024-05-12 20:15:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
jsonBytes, err := json.Marshal(CompletionRatio)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
SysError("error marshalling completion ratio: " + err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
return string(jsonBytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func UpdateCompletionRatioByJSONString(jsonStr string) error {
|
|
|
|
|
|
CompletionRatio = make(map[string]float64)
|
|
|
|
|
|
return json.Unmarshal([]byte(jsonStr), &CompletionRatio)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-08-19 16:58:34 +08:00
|
|
|
|
func GetCompletionRatio(name string) float64 {
|
2025-01-26 16:07:41 +08:00
|
|
|
|
if strings.Contains(name, "/") {
|
|
|
|
|
|
if ratio, ok := CompletionRatio[name]; ok {
|
|
|
|
|
|
return ratio
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
lowercaseName := strings.ToLower(name)
|
2024-05-14 16:35:43 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4-gizmo") {
|
|
|
|
|
|
name = "gpt-4-gizmo-*"
|
|
|
|
|
|
}
|
2024-08-16 17:25:03 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4o-gizmo") {
|
|
|
|
|
|
name = "gpt-4o-gizmo-*"
|
|
|
|
|
|
}
|
2024-05-18 18:32:10 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4") && !strings.HasSuffix(name, "-all") && !strings.HasSuffix(name, "-gizmo-*") {
|
2024-07-19 01:29:08 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4o") {
|
2024-10-03 20:48:47 +08:00
|
|
|
|
if name == "gpt-4o-2024-05-13" {
|
|
|
|
|
|
return 3
|
|
|
|
|
|
}
|
2024-10-03 20:47:54 +08:00
|
|
|
|
return 4
|
2023-11-11 01:55:29 +08:00
|
|
|
|
}
|
2024-11-04 15:27:12 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-4-turbo") || strings.HasSuffix(name, "preview") {
|
|
|
|
|
|
return 3
|
|
|
|
|
|
}
|
2023-08-19 16:58:34 +08:00
|
|
|
|
return 2
|
|
|
|
|
|
}
|
2025-02-01 13:41:25 +08:00
|
|
|
|
if strings.HasPrefix(name, "o1") || strings.HasPrefix(name, "o3") {
|
2024-09-13 01:22:27 +08:00
|
|
|
|
return 4
|
|
|
|
|
|
}
|
2024-08-14 15:47:08 +08:00
|
|
|
|
if name == "chatgpt-4o-latest" {
|
2024-10-17 12:50:14 +08:00
|
|
|
|
return 3
|
2024-08-14 15:47:08 +08:00
|
|
|
|
}
|
2024-04-08 02:12:47 +08:00
|
|
|
|
if strings.Contains(name, "claude-instant-1") {
|
2024-03-08 21:17:32 +08:00
|
|
|
|
return 3
|
2024-04-08 02:12:47 +08:00
|
|
|
|
} else if strings.Contains(name, "claude-2") {
|
2024-03-08 21:17:32 +08:00
|
|
|
|
return 3
|
2024-04-08 02:12:47 +08:00
|
|
|
|
} else if strings.Contains(name, "claude-3") {
|
2024-03-08 21:17:32 +08:00
|
|
|
|
return 5
|
2023-08-19 16:58:34 +08:00
|
|
|
|
}
|
2024-09-13 01:22:27 +08:00
|
|
|
|
if strings.HasPrefix(name, "gpt-3.5") {
|
|
|
|
|
|
if name == "gpt-3.5-turbo" || strings.HasSuffix(name, "0125") {
|
|
|
|
|
|
// https://openai.com/blog/new-embedding-models-and-api-updates
|
|
|
|
|
|
// Updated GPT-3.5 Turbo model and lower pricing
|
|
|
|
|
|
return 3
|
|
|
|
|
|
}
|
|
|
|
|
|
if strings.HasSuffix(name, "1106") {
|
|
|
|
|
|
return 2
|
|
|
|
|
|
}
|
|
|
|
|
|
return 4.0 / 3.0
|
|
|
|
|
|
}
|
2024-03-25 16:17:35 +08:00
|
|
|
|
if strings.HasPrefix(name, "mistral-") {
|
|
|
|
|
|
return 3
|
|
|
|
|
|
}
|
|
|
|
|
|
if strings.HasPrefix(name, "gemini-") {
|
2024-10-03 21:12:09 +08:00
|
|
|
|
return 4
|
2024-03-25 16:17:35 +08:00
|
|
|
|
}
|
2024-04-24 18:53:21 +08:00
|
|
|
|
if strings.HasPrefix(name, "command") {
|
2024-04-24 22:08:54 +08:00
|
|
|
|
switch name {
|
|
|
|
|
|
case "command-r":
|
|
|
|
|
|
return 3
|
|
|
|
|
|
case "command-r-plus":
|
|
|
|
|
|
return 5
|
2024-09-01 15:21:05 +07:00
|
|
|
|
case "command-r-08-2024":
|
|
|
|
|
|
return 4
|
|
|
|
|
|
case "command-r-plus-08-2024":
|
|
|
|
|
|
return 4
|
2024-04-24 22:08:54 +08:00
|
|
|
|
default:
|
2025-01-21 00:53:10 +08:00
|
|
|
|
return 4
|
2024-04-24 22:08:54 +08:00
|
|
|
|
}
|
2024-04-24 18:53:21 +08:00
|
|
|
|
}
|
2025-01-26 16:07:41 +08:00
|
|
|
|
if strings.HasPrefix(lowercaseName, "deepseek") {
|
|
|
|
|
|
if strings.HasSuffix(lowercaseName, "reasoner") || strings.HasSuffix(lowercaseName, "r1") {
|
2025-01-21 00:53:10 +08:00
|
|
|
|
return 4
|
|
|
|
|
|
}
|
2024-05-08 16:57:11 +08:00
|
|
|
|
return 2
|
|
|
|
|
|
}
|
2024-05-16 14:05:44 +08:00
|
|
|
|
if strings.HasPrefix(name, "ERNIE-Speed-") {
|
|
|
|
|
|
return 2
|
|
|
|
|
|
} else if strings.HasPrefix(name, "ERNIE-Lite-") {
|
|
|
|
|
|
return 2
|
|
|
|
|
|
} else if strings.HasPrefix(name, "ERNIE-Character") {
|
|
|
|
|
|
return 2
|
|
|
|
|
|
} else if strings.HasPrefix(name, "ERNIE-Functions") {
|
|
|
|
|
|
return 2
|
|
|
|
|
|
}
|
2024-03-25 16:17:35 +08:00
|
|
|
|
switch name {
|
|
|
|
|
|
case "llama2-70b-4096":
|
2024-05-12 20:15:56 +08:00
|
|
|
|
return 0.8 / 0.64
|
|
|
|
|
|
case "llama3-8b-8192":
|
|
|
|
|
|
return 2
|
|
|
|
|
|
case "llama3-70b-8192":
|
|
|
|
|
|
return 0.79 / 0.59
|
|
|
|
|
|
}
|
|
|
|
|
|
if ratio, ok := CompletionRatio[name]; ok {
|
|
|
|
|
|
return ratio
|
2024-03-25 16:17:35 +08:00
|
|
|
|
}
|
2023-08-19 16:58:34 +08:00
|
|
|
|
return 1
|
|
|
|
|
|
}
|
2024-05-13 23:02:35 +08:00
|
|
|
|
|
2024-10-04 16:08:18 +08:00
|
|
|
|
func GetAudioRatio(name string) float64 {
|
2025-01-03 20:42:46 +08:00
|
|
|
|
if strings.Contains(name, "-realtime") {
|
|
|
|
|
|
if strings.HasSuffix(name, "gpt-4o-realtime-preview-2024-12-17") {
|
|
|
|
|
|
return 8
|
|
|
|
|
|
} else if strings.Contains(name, "mini") {
|
|
|
|
|
|
return 10 / 0.6
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 20
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if strings.Contains(name, "-audio") {
|
|
|
|
|
|
if strings.HasSuffix(name, "gpt-4o-audio-preview-2024-12-17") {
|
|
|
|
|
|
return 16
|
|
|
|
|
|
} else if strings.Contains(name, "mini") {
|
|
|
|
|
|
return 10 / 0.15
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 40
|
|
|
|
|
|
}
|
2024-10-04 16:08:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 20
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func GetAudioCompletionRatio(name string) float64 {
|
|
|
|
|
|
if strings.HasPrefix(name, "gpt-4o-realtime") {
|
2024-11-06 19:33:50 +08:00
|
|
|
|
return 2
|
2025-01-03 18:51:09 +08:00
|
|
|
|
} else if strings.HasPrefix(name, "gpt-4o-mini-realtime") {
|
|
|
|
|
|
return 2
|
2024-10-04 16:08:18 +08:00
|
|
|
|
}
|
2024-10-06 14:13:41 +08:00
|
|
|
|
return 2
|
2024-10-04 16:08:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-10-06 14:13:41 +08:00
|
|
|
|
//func GetAudioPricePerMinute(name string) float64 {
|
|
|
|
|
|
// if strings.HasPrefix(name, "gpt-4o-realtime") {
|
|
|
|
|
|
// return 0.06
|
|
|
|
|
|
// }
|
|
|
|
|
|
// return 0.06
|
|
|
|
|
|
//}
|
|
|
|
|
|
//
|
|
|
|
|
|
//func GetAudioCompletionPricePerMinute(name string) float64 {
|
|
|
|
|
|
// if strings.HasPrefix(name, "gpt-4o-realtime") {
|
|
|
|
|
|
// return 0.24
|
|
|
|
|
|
// }
|
|
|
|
|
|
// return 0.24
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
2024-05-24 15:28:16 +08:00
|
|
|
|
func GetCompletionRatioMap() map[string]float64 {
|
2024-05-13 23:02:35 +08:00
|
|
|
|
if CompletionRatio == nil {
|
2024-05-24 15:28:16 +08:00
|
|
|
|
CompletionRatio = defaultCompletionRatio
|
2024-05-13 23:02:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
return CompletionRatio
|
|
|
|
|
|
}
|