Merge branch 'frontier' into azure_multiple_models

这个提交包含在:
binary-husky
2023-10-27 23:35:50 +08:00
提交者 GitHub
当前提交 349c399967
共有 11 个文件被更改,包括 121 次插入61 次删除

查看文件

@@ -182,6 +182,15 @@ model_info = {
"token_cnt": get_token_num_gpt4,
},
"api2d-gpt-3.5-turbo-16k": {
"fn_with_ui": chatgpt_ui,
"fn_without_ui": chatgpt_noui,
"endpoint": api2d_endpoint,
"max_token": 1024*16,
"tokenizer": tokenizer_gpt35,
"token_cnt": get_token_num_gpt35,
},
# 将 chatglm 直接对齐到 chatglm2
"chatglm": {
"fn_with_ui": chatglm_ui,