XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/gpt4free

feat(DDG): remove gpt-3.5-turbo model

bc66fa49
baysonfox <baysonfox@gmail.com>
提交于

代码差异

1 个文件 +1 -2
Modified g4f/Provider/DDG.py +1 -2
@@ -20,11 +20,10 @@ class DDG(AsyncGeneratorProvider, ProviderModelMixin):
20 20
21 21 # default_model = "gpt-3.5-turbo-0125"
22 22 default_model = "gpt-4o-mini"
23 models = ["gpt-4o-mini" ,"gpt-3.5-turbo-0125", "claude-3-haiku-20240307", "meta-llama/Llama-3-70b-chat-hf", "mistralai/Mixtral-8x7B-Instruct-v0.1"]
23 models = ["gpt-4o-mini", "claude-3-haiku-20240307", "meta-llama/Llama-3-70b-chat-hf", "mistralai/Mixtral-8x7B-Instruct-v0.1"]
24 24 model_aliases = {
25 25 "gpt-4": "gpt-4o-mini",
26 26 "gpt-4o": "gpt-4o-mini",
27 "gpt-3.5-turbo": "gpt-3.5-turbo-0125",
28 27 "claude-3-haiku": "claude-3-haiku-20240307",
29 28 "llama-3-70b": "meta-llama/Llama-3-70b-chat-hf",
30 29 "mixtral-8x7B": "mistralai/Mixtral-8x7B-Instruct-v0.1"