2023-05-11 12:59:35 +00:00
|
|
|
package common
|
|
|
|
|
2023-08-19 08:58:34 +00:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"strings"
|
2023-11-10 13:08:23 +00:00
|
|
|
"time"
|
2023-08-19 08:58:34 +00:00
|
|
|
)
|
2023-05-11 12:59:35 +00:00
|
|
|
|
2023-11-17 12:03:16 +00:00
|
|
|
var DalleSizeRatios = map[string]map[string]float64{
|
|
|
|
"dall-e-2": {
|
|
|
|
"256x256": 1,
|
|
|
|
"512x512": 1.125,
|
|
|
|
"1024x1024": 1.25,
|
|
|
|
},
|
|
|
|
"dall-e-3": {
|
|
|
|
"1024x1024": 1,
|
|
|
|
"1024x1792": 2,
|
|
|
|
"1792x1024": 2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var DalleGenerationImageAmounts = map[string][2]int{
|
|
|
|
"dall-e-2": {1, 10},
|
|
|
|
"dall-e-3": {1, 1}, // OpenAI allows n=1 currently.
|
|
|
|
}
|
|
|
|
|
|
|
|
var DalleImagePromptLengthLimitations = map[string]int{
|
|
|
|
"dall-e-2": 1000,
|
|
|
|
"dall-e-3": 4000,
|
|
|
|
}
|
|
|
|
|
2023-06-14 01:41:06 +00:00
|
|
|
// ModelRatio
|
2023-05-11 12:59:35 +00:00
|
|
|
// https://platform.openai.com/docs/models/model-endpoint-compatibility
|
2023-07-22 15:24:09 +00:00
|
|
|
// https://cloud.baidu.com/doc/WENXINWORKSHOP/s/Blfmc9dlf
|
2023-05-11 12:59:35 +00:00
|
|
|
// https://openai.com/pricing
|
|
|
|
// TODO: when a new api is enabled, check the pricing here
|
2023-06-14 01:41:06 +00:00
|
|
|
// 1 === $0.002 / 1K tokens
|
2023-07-23 03:51:44 +00:00
|
|
|
// 1 === ¥0.014 / 1k tokens
|
2023-05-11 12:59:35 +00:00
|
|
|
var ModelRatio = map[string]float64{
|
2023-08-26 05:30:21 +00:00
|
|
|
"gpt-4": 15,
|
|
|
|
"gpt-4-0314": 15,
|
|
|
|
"gpt-4-0613": 15,
|
|
|
|
"gpt-4-32k": 30,
|
|
|
|
"gpt-4-32k-0314": 30,
|
|
|
|
"gpt-4-32k-0613": 30,
|
2023-11-10 13:08:23 +00:00
|
|
|
"gpt-4-1106-preview": 5, // $0.01 / 1K tokens
|
|
|
|
"gpt-4-vision-preview": 5, // $0.01 / 1K tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"gpt-3.5-turbo": 0.75, // $0.0015 / 1K tokens
|
|
|
|
"gpt-3.5-turbo-0301": 0.75,
|
|
|
|
"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,
|
2023-09-23 14:37:11 +00:00
|
|
|
"gpt-3.5-turbo-instruct": 0.75, // $0.0015 / 1K tokens
|
2023-11-10 13:08:23 +00:00
|
|
|
"gpt-3.5-turbo-1106": 0.5, // $0.001 / 1K tokens
|
2024-01-01 09:40:10 +00:00
|
|
|
"davinci-002": 1, // $0.002 / 1K tokens
|
|
|
|
"babbage-002": 0.2, // $0.0004 / 1K tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"text-ada-001": 0.2,
|
|
|
|
"text-babbage-001": 0.25,
|
|
|
|
"text-curie-001": 1,
|
|
|
|
"text-davinci-002": 10,
|
|
|
|
"text-davinci-003": 10,
|
|
|
|
"text-davinci-edit-001": 10,
|
|
|
|
"code-davinci-edit-001": 10,
|
2023-11-17 13:18:51 +00:00
|
|
|
"whisper-1": 15, // $0.006 / minute -> $0.006 / 150 words -> $0.006 / 200 tokens -> $0.03 / 1k tokens
|
|
|
|
"tts-1": 7.5, // $0.015 / 1K characters
|
|
|
|
"tts-1-1106": 7.5,
|
|
|
|
"tts-1-hd": 15, // $0.030 / 1K characters
|
|
|
|
"tts-1-hd-1106": 15,
|
2023-08-26 05:30:21 +00:00
|
|
|
"davinci": 10,
|
|
|
|
"curie": 10,
|
|
|
|
"babbage": 10,
|
|
|
|
"ada": 10,
|
|
|
|
"text-embedding-ada-002": 0.05,
|
|
|
|
"text-search-ada-doc-001": 10,
|
|
|
|
"text-moderation-stable": 0.1,
|
|
|
|
"text-moderation-latest": 0.1,
|
2023-11-17 12:03:16 +00:00
|
|
|
"dall-e-2": 8, // $0.016 - $0.020 / image
|
|
|
|
"dall-e-3": 20, // $0.040 - $0.120 / image
|
2023-08-26 05:30:21 +00:00
|
|
|
"claude-instant-1": 0.815, // $1.63 / 1M tokens
|
|
|
|
"claude-2": 5.51, // $11.02 / 1M tokens
|
2023-11-24 13:39:44 +00:00
|
|
|
"claude-2.0": 5.51, // $11.02 / 1M tokens
|
|
|
|
"claude-2.1": 5.51, // $11.02 / 1M tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"ERNIE-Bot": 0.8572, // ¥0.012 / 1k tokens
|
|
|
|
"ERNIE-Bot-turbo": 0.5715, // ¥0.008 / 1k tokens
|
2023-10-22 10:48:35 +00:00
|
|
|
"ERNIE-Bot-4": 8.572, // ¥0.12 / 1k tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"Embedding-V1": 0.1429, // ¥0.002 / 1k tokens
|
|
|
|
"PaLM-2": 1,
|
2023-12-17 04:48:32 +00:00
|
|
|
"gemini-pro": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
|
2023-12-24 10:54:32 +00:00
|
|
|
"gemini-pro-vision": 1, // $0.00025 / 1k characters -> $0.001 / 1k tokens
|
2023-11-05 09:59:38 +00:00
|
|
|
"chatglm_turbo": 0.3572, // ¥0.005 / 1k tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"chatglm_pro": 0.7143, // ¥0.01 / 1k tokens
|
|
|
|
"chatglm_std": 0.3572, // ¥0.005 / 1k tokens
|
|
|
|
"chatglm_lite": 0.1429, // ¥0.002 / 1k tokens
|
2023-12-17 11:43:23 +00:00
|
|
|
"qwen-turbo": 0.5715, // ¥0.008 / 1k tokens // https://help.aliyun.com/zh/dashscope/developer-reference/tongyi-thousand-questions-metering-and-billing
|
|
|
|
"qwen-plus": 1.4286, // ¥0.02 / 1k tokens
|
|
|
|
"qwen-max": 1.4286, // ¥0.02 / 1k tokens
|
|
|
|
"qwen-max-longcontext": 1.4286, // ¥0.02 / 1k tokens
|
2023-09-03 14:12:35 +00:00
|
|
|
"text-embedding-v1": 0.05, // ¥0.0007 / 1k tokens
|
|
|
|
"SparkDesk": 1.2858, // ¥0.018 / 1k tokens
|
2023-08-26 05:30:21 +00:00
|
|
|
"360GPT_S2_V9": 0.8572, // ¥0.012 / 1k tokens
|
|
|
|
"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
|
2023-10-03 06:19:03 +00:00
|
|
|
"hunyuan": 7.143, // ¥0.1 / 1k tokens // https://cloud.tencent.com/document/product/1729/97731#e0e6be58-60c8-469f-bdeb-6c264ce3b4d0
|
2023-05-11 12:59:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ModelRatio2JSONString() string {
|
|
|
|
jsonBytes, err := json.Marshal(ModelRatio)
|
|
|
|
if err != nil {
|
2023-06-22 02:59:01 +00:00
|
|
|
SysError("error marshalling model ratio: " + err.Error())
|
2023-05-11 12:59:35 +00:00
|
|
|
}
|
|
|
|
return string(jsonBytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdateModelRatioByJSONString(jsonStr string) error {
|
2023-06-12 01:11:48 +00:00
|
|
|
ModelRatio = make(map[string]float64)
|
2023-05-11 12:59:35 +00:00
|
|
|
return json.Unmarshal([]byte(jsonStr), &ModelRatio)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetModelRatio(name string) float64 {
|
2023-12-24 08:17:21 +00:00
|
|
|
if strings.HasPrefix(name, "qwen-") && strings.HasSuffix(name, "-internet") {
|
|
|
|
name = strings.TrimSuffix(name, "-internet")
|
|
|
|
}
|
2023-05-11 12:59:35 +00:00
|
|
|
ratio, ok := ModelRatio[name]
|
|
|
|
if !ok {
|
2023-06-22 02:59:01 +00:00
|
|
|
SysError("model ratio not found: " + name)
|
2023-06-18 14:28:28 +00:00
|
|
|
return 30
|
2023-05-11 12:59:35 +00:00
|
|
|
}
|
|
|
|
return ratio
|
|
|
|
}
|
2023-08-19 08:58:34 +00:00
|
|
|
|
|
|
|
func GetCompletionRatio(name string) float64 {
|
|
|
|
if strings.HasPrefix(name, "gpt-3.5") {
|
2023-11-10 13:08:23 +00:00
|
|
|
if strings.HasSuffix(name, "1106") {
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
if name == "gpt-3.5-turbo" || name == "gpt-3.5-turbo-16k" {
|
|
|
|
// TODO: clear this after 2023-12-11
|
|
|
|
now := time.Now()
|
|
|
|
// https://platform.openai.com/docs/models/continuous-model-upgrades
|
|
|
|
// if after 2023-12-11, use 2
|
|
|
|
if now.After(time.Date(2023, 12, 11, 0, 0, 0, 0, time.UTC)) {
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
}
|
2023-08-19 08:58:34 +00:00
|
|
|
return 1.333333
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(name, "gpt-4") {
|
2023-11-10 13:08:23 +00:00
|
|
|
if strings.HasSuffix(name, "preview") {
|
|
|
|
return 3
|
|
|
|
}
|
2023-08-19 08:58:34 +00:00
|
|
|
return 2
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(name, "claude-instant-1") {
|
|
|
|
return 3.38
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(name, "claude-2") {
|
|
|
|
return 2.965517
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|