2023-05-11 12:59:35 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import "encoding/json"
|
|
|
|
|
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{
|
|
|
|
"gpt-4": 15,
|
|
|
|
"gpt-4-0314": 15,
|
2023-06-14 01:12:14 +00:00
|
|
|
"gpt-4-0613": 15,
|
2023-05-11 12:59:35 +00:00
|
|
|
"gpt-4-32k": 30,
|
|
|
|
"gpt-4-32k-0314": 30,
|
2023-06-14 01:12:14 +00:00
|
|
|
"gpt-4-32k-0613": 30,
|
2023-06-14 01:41:06 +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-05-11 12:59:35 +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,
|
|
|
|
"whisper-1": 10,
|
|
|
|
"davinci": 10,
|
|
|
|
"curie": 10,
|
|
|
|
"babbage": 10,
|
|
|
|
"ada": 10,
|
2023-06-25 04:07:42 +00:00
|
|
|
"text-embedding-ada-002": 0.05,
|
2023-05-11 12:59:35 +00:00
|
|
|
"text-search-ada-doc-001": 10,
|
2023-06-11 01:37:36 +00:00
|
|
|
"text-moderation-stable": 0.1,
|
|
|
|
"text-moderation-latest": 0.1,
|
2023-07-15 04:30:06 +00:00
|
|
|
"dall-e": 8,
|
2023-07-22 08:18:03 +00:00
|
|
|
"claude-instant-1": 0.75,
|
|
|
|
"claude-2": 30,
|
2023-07-23 03:51:44 +00:00
|
|
|
"ERNIE-Bot": 0.8572, // ¥0.012 / 1k tokens
|
|
|
|
"ERNIE-Bot-turbo": 0.5715, // ¥0.008 / 1k tokens
|
2023-07-29 04:15:07 +00:00
|
|
|
"Embedding-V1": 0.1429, // ¥0.002 / 1k tokens
|
2023-07-22 16:32:47 +00:00
|
|
|
"PaLM-2": 1,
|
2023-07-23 03:51:44 +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-07-28 15:45:08 +00:00
|
|
|
"qwen-v1": 0.8572, // TBD: https://help.aliyun.com/document_detail/2399482.html?spm=a2c4g.2399482.0.0.1ad347feilAgag
|
|
|
|
"qwen-plus-v1": 0.5715, // Same as above
|
2023-07-29 13:55:57 +00:00
|
|
|
"SparkDesk": 0.8572, // TBD
|
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 {
|
|
|
|
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
|
|
|
|
}
|