From bc66fa4942cd6455dbb10188edc92f201cabcecc Mon Sep 17 00:00:00 2001 From: baysonfox Date: Thu, 1 Aug 2024 00:35:21 +0800 Subject: feat(DDG): remove gpt-3.5-turbo model --- g4f/Provider/DDG.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'g4f') diff --git a/g4f/Provider/DDG.py b/g4f/Provider/DDG.py index 2b2879b6..91ccde32 100644 --- a/g4f/Provider/DDG.py +++ b/g4f/Provider/DDG.py @@ -20,11 +20,10 @@ class DDG(AsyncGeneratorProvider, ProviderModelMixin): # default_model = "gpt-3.5-turbo-0125" default_model = "gpt-4o-mini" - 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"] + models = ["gpt-4o-mini", "claude-3-haiku-20240307", "meta-llama/Llama-3-70b-chat-hf", "mistralai/Mixtral-8x7B-Instruct-v0.1"] model_aliases = { "gpt-4": "gpt-4o-mini", "gpt-4o": "gpt-4o-mini", - "gpt-3.5-turbo": "gpt-3.5-turbo-0125", "claude-3-haiku": "claude-3-haiku-20240307", "llama-3-70b": "meta-llama/Llama-3-70b-chat-hf", "mixtral-8x7B": "mistralai/Mixtral-8x7B-Instruct-v0.1" -- cgit v1.2.3