From 831c722a9fd9907bd9066c1f3c3feb7704f93b09 Mon Sep 17 00:00:00 2001 From: kqlio67 <> Date: Sun, 12 Jan 2025 13:25:41 +0200 Subject: Update providers, documentation improvements and bug fixes --- g4f/Provider/DeepInfraChat.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'g4f/Provider/DeepInfraChat.py') diff --git a/g4f/Provider/DeepInfraChat.py b/g4f/Provider/DeepInfraChat.py index e947383d..5db74012 100644 --- a/g4f/Provider/DeepInfraChat.py +++ b/g4f/Provider/DeepInfraChat.py @@ -10,18 +10,18 @@ from .base_provider import AsyncGeneratorProvider, ProviderModelMixin class DeepInfraChat(AsyncGeneratorProvider, ProviderModelMixin): url = "https://deepinfra.com/chat" api_endpoint = "https://api.deepinfra.com/v1/openai/chat/completions" + working = True - needs_auth = False supports_stream = True supports_system_message = True supports_message_history = True - default_model = 'meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo' + default_model = 'meta-llama/Llama-3.3-70B-Instruct-Turbo' models = [ 'meta-llama/Llama-3.3-70B-Instruct', 'meta-llama/Meta-Llama-3.1-8B-Instruct', - 'meta-llama/Llama-3.3-70B-Instruct-Turbo', default_model, + 'meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo', 'Qwen/QwQ-32B-Preview', 'microsoft/WizardLM-2-8x22B', 'Qwen/Qwen2.5-72B-Instruct', -- cgit v1.2.3