Alesx's picture
Duplicate from monra/freegpt-webui
ae07694
raw
history blame contribute delete
No virus
1.6 kB
import os, uuid, requests
from ...typing import sha256, Dict, get_type_hints
url = 'https://liaobots.com'
model = ['gpt-4-0613']
supports_stream = True
needs_auth = True
models = {
'gpt-4-0613': {
"id":"gpt-4-0613",
"name":"GPT-4",
"maxLength":24000,
"tokenLimit":8000
}
}
def _create_completion(model: str, messages: list, stream: bool, **kwargs):
print(kwargs)
headers = {
'authority': 'liaobots.com',
'content-type': 'application/json',
'origin': 'https://liaobots.com',
'referer': 'https://liaobots.com/',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36',
'x-auth-code': 'P6cPPK6Z8JDG3'
}
json_data = {
'conversationId': str(uuid.uuid4()),
'model': models[model],
'authcode':"jrzVZMJiwN0NU",
'messages': messages,
'key': '',
'prompt': "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
}
response = requests.post('https://liaobots.com/api/chat',
headers=headers, json=json_data, stream=True)
for token in response.iter_content(chunk_size=2046):
yield (token.decode('cp1251'))
params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \
'(%s)' % ', '.join([f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]])