From e079d95b108d489033ad7f3a0f450b7d126ae695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Anh=20Tu=E1=BA=A5n?= Date: Thu, 29 Jun 2023 20:55:45 +0700 Subject: fix subDomain of LockChat --- g4f/Provider/Providers/Lockchat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/g4f/Provider/Providers/Lockchat.py b/g4f/Provider/Providers/Lockchat.py index d97bc67b..1bce7403 100644 --- a/g4f/Provider/Providers/Lockchat.py +++ b/g4f/Provider/Providers/Lockchat.py @@ -2,7 +2,7 @@ import requests import os import json from ...typing import sha256, Dict, get_type_hints -url = 'http://super.lockchat.app' +url = 'http://supertest.lockchat.app' model = ['gpt-4', 'gpt-3.5-turbo'] supports_stream = True needs_auth = False @@ -18,7 +18,7 @@ def _create_completion(model: str, messages: list, stream: bool, temperature: fl headers = { "user-agent": "ChatX/39 CFNetwork/1408.0.4 Darwin/22.5.0", } - response = requests.post("http://super.lockchat.app/v1/chat/completions?auth=FnMNPlwZEnGFqvEc9470Vw==", + response = requests.post("http://supertest.lockchat.app/v1/chat/completions", json=payload, headers=headers, stream=True) for token in response.iter_lines(): if b'The model: `gpt-4` does not exist' in token: -- cgit v1.2.3