Skip to content

Commit 446e94d

Browse files
authored
Merge pull request #2164 from 6vision/mini_bot
Support gpt-4o-mini model
2 parents 5b26066 + 52a490c commit 446e94d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

bot/chatgpt/chat_gpt_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def num_tokens_from_messages(messages, model):
6767
elif model in ["gpt-4-0314", "gpt-4-0613", "gpt-4-32k", "gpt-4-32k-0613", "gpt-3.5-turbo-0613",
6868
"gpt-3.5-turbo-16k", "gpt-3.5-turbo-16k-0613", "gpt-35-turbo-16k", "gpt-4-turbo-preview",
6969
"gpt-4-1106-preview", const.GPT4_TURBO_PREVIEW, const.GPT4_VISION_PREVIEW, const.GPT4_TURBO_01_25,
70-
const.GPT_4o, const.LINKAI_4o, const.LINKAI_4_TURBO]:
70+
const.GPT_4o, const.GPT_4o_MINI, const.LINKAI_4o, const.LINKAI_4_TURBO]:
7171
return num_tokens_from_messages(messages, model="gpt-4")
7272
elif model.startswith("claude-3"):
7373
return num_tokens_from_messages(messages, model="gpt-3.5-turbo")

common/const.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
GPT4_VISION_PREVIEW = "gpt-4-vision-preview"
3333

3434
GPT4 = "gpt-4"
35+
GPT_4o_MINI = "gpt-4o-mini"
3536
GPT4_32k = "gpt-4-32k"
3637
GPT4_06_13 = "gpt-4-0613"
3738
GPT4_32k_06_13 = "gpt-4-32k-0613"
@@ -57,7 +58,7 @@
5758

5859
MODEL_LIST = [
5960
GPT35, GPT35_0125, GPT35_1106, "gpt-3.5-turbo-16k",
60-
GPT_4o, GPT4_TURBO, GPT4_TURBO_PREVIEW, GPT4_TURBO_01_25, GPT4_TURBO_11_06, GPT4, GPT4_32k, GPT4_06_13, GPT4_32k_06_13,
61+
GPT_4o, GPT_4o_MINI, GPT4_TURBO, GPT4_TURBO_PREVIEW, GPT4_TURBO_01_25, GPT4_TURBO_11_06, GPT4, GPT4_32k, GPT4_06_13, GPT4_32k_06_13,
6162
WEN_XIN, WEN_XIN_4,
6263
XUNFEI, ZHIPU_AI, MOONSHOT, MiniMax,
6364
GEMINI, GEMINI_PRO, GEMINI_15_flash, GEMINI_15_PRO,

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"open_ai_api_base": "https://api.openai.com/v1",
1818
"proxy": "", # openai使用的代理
1919
# chatgpt模型, 当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
20-
"model": "gpt-3.5-turbo", # 可选择: gpt-4o, gpt-4-turbo, claude-3-sonnet, wenxin, moonshot, qwen-turbo, xunfei, glm-4, minimax, gemini等模型,全部可选模型详见common/const.py文件
20+
"model": "gpt-3.5-turbo", # 可选择: gpt-4o, pt-4o-mini, gpt-4-turbo, claude-3-sonnet, wenxin, moonshot, qwen-turbo, xunfei, glm-4, minimax, gemini等模型,全部可选模型详见common/const.py文件
2121
"bot_type": "", # 可选配置,使用兼容openai格式的三方服务时候,需填"chatGPT"。bot具体名称详见common/const.py文件列出的bot_type,如不填根据model名称判断,
2222
"use_azure_chatgpt": False, # 是否使用azure的chatgpt
2323
"azure_deployment_id": "", # azure 模型部署名称

0 commit comments

Comments
 (0)