Merge pull request #705 from tuanle96/fix-lockchat-provider

Fix: change subDomain of LockChat
pull/724/head
xtekky 1 year ago committed by GitHub
commit 8cb80866b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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:

Loading…
Cancel
Save