diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-07-01 20:09:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 20:09:09 +0200 |
commit | 8cb80866b06c76ce11ea3aff9ebc0ff01c080c52 (patch) | |
tree | 74a675b87bc054b0cbdf5268c30e64fc80512d11 | |
parent | Merge pull request #688 from BoBeR182/patch-1 (diff) | |
parent | fix subDomain of LockChat (diff) | |
download | gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar.gz gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar.bz2 gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar.lz gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar.xz gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.tar.zst gpt4free-8cb80866b06c76ce11ea3aff9ebc0ff01c080c52.zip |
-rw-r--r-- | g4f/Provider/Providers/Lockchat.py | 4 |
1 files 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: |