2023-09-03 11:26:26 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import uuid
|
2024-08-29 09:03:32 +03:00
|
|
|
import requests
|
2024-01-24 01:48:11 +03:00
|
|
|
from aiohttp import ClientSession, BaseConnector
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2023-10-09 11:22:17 +03:00
|
|
|
from ..typing import AsyncResult, Messages
|
2024-01-23 21:44:48 +03:00
|
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
2024-01-24 02:46:35 +03:00
|
|
|
from .helper import get_connector
|
2024-03-12 04:06:06 +03:00
|
|
|
from ..requests import raise_for_status
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2024-01-23 21:44:48 +03:00
|
|
|
class Liaobots(AsyncGeneratorProvider, ProviderModelMixin):
|
2023-10-05 06:13:37 +03:00
|
|
|
url = "https://liaobots.site"
|
2024-03-08 12:12:13 +03:00
|
|
|
working = True
|
2023-10-27 23:59:14 +03:00
|
|
|
supports_message_history = True
|
2024-03-12 04:06:06 +03:00
|
|
|
supports_system_message = True
|
2023-08-28 02:43:45 +03:00
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
supports_gpt_4 = True
|
2024-07-25 09:21:55 +03:00
|
|
|
default_model = "gpt-4o"
|
2024-08-29 09:03:32 +03:00
|
|
|
models = None
|
2024-01-23 21:44:48 +03:00
|
|
|
model_aliases = {
|
2024-07-25 09:21:55 +03:00
|
|
|
"gpt-4o-mini": "gpt-4o-mini-free",
|
|
|
|
"gpt-4o": "gpt-4o-free",
|
2024-07-28 13:34:28 +03:00
|
|
|
"gpt-4-turbo": "gpt-4-turbo-2024-04-09",
|
2024-08-29 09:03:32 +03:00
|
|
|
"gpt-4o": "gpt-4o-2024-08-06",
|
|
|
|
"gpt-4": "gpt-4-0613",
|
|
|
|
|
2024-07-25 09:21:55 +03:00
|
|
|
"claude-3-opus": "claude-3-opus-20240229",
|
|
|
|
"claude-3-opus": "claude-3-opus-20240229-aws",
|
|
|
|
"claude-3-opus": "claude-3-opus-20240229-gcp",
|
|
|
|
"claude-3-sonnet": "claude-3-sonnet-20240229",
|
|
|
|
"claude-3-5-sonnet": "claude-3-5-sonnet-20240620",
|
|
|
|
"claude-3-haiku": "claude-3-haiku-20240307",
|
2024-08-29 09:03:32 +03:00
|
|
|
"claude-2.1": "claude-2.1",
|
|
|
|
|
2024-07-25 09:21:55 +03:00
|
|
|
"gemini-pro": "gemini-1.0-pro-latest",
|
|
|
|
"gemini-flash": "gemini-1.5-flash-latest",
|
2024-08-29 09:03:32 +03:00
|
|
|
"gemini-pro": "gemini-1.5-pro-latest",
|
2024-01-23 21:44:48 +03:00
|
|
|
}
|
2024-05-18 08:37:37 +03:00
|
|
|
_auth_code = ""
|
2024-01-01 00:59:24 +03:00
|
|
|
_cookie_jar = None
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2024-08-29 09:03:32 +03:00
|
|
|
@classmethod
|
|
|
|
def get_models(cls):
|
|
|
|
if cls.models is None:
|
|
|
|
url = 'https://liaobots.work/api/models'
|
|
|
|
headers = {
|
|
|
|
'accept': '/',
|
|
|
|
'accept-language': 'en-US,en;q=0.9',
|
|
|
|
'content-type': 'application/json',
|
|
|
|
'cookie': 'gkp2=ehnhUPJtkCgMmod8Sbxn',
|
|
|
|
'origin': 'https://liaobots.work',
|
|
|
|
'priority': 'u=1, i',
|
|
|
|
'referer': 'https://liaobots.work/',
|
|
|
|
'sec-ch-ua': '"Chromium";v="127", "Not)A;Brand";v="99"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
|
|
|
'sec-ch-ua-platform': '"Linux"',
|
|
|
|
'sec-fetch-dest': 'empty',
|
|
|
|
'sec-fetch-mode': 'cors',
|
|
|
|
'sec-fetch-site': 'same-origin',
|
|
|
|
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36'
|
|
|
|
}
|
|
|
|
data = {'key': ''}
|
|
|
|
|
|
|
|
response = requests.post(url, headers=headers, json=data)
|
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
try:
|
|
|
|
models_data = response.json()
|
|
|
|
cls.models = {model['id']: model for model in models_data}
|
|
|
|
except (ValueError, KeyError) as e:
|
|
|
|
print(f"Error processing JSON response: {e}")
|
|
|
|
cls.models = {}
|
|
|
|
else:
|
|
|
|
print(f"Request failed with status code: {response.status_code}")
|
|
|
|
cls.models = {}
|
|
|
|
|
|
|
|
return cls.models
|
|
|
|
|
2023-08-28 02:43:45 +03:00
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
2023-07-28 13:07:17 +03:00
|
|
|
model: str,
|
2023-10-09 11:22:17 +03:00
|
|
|
messages: Messages,
|
2023-08-28 02:43:45 +03:00
|
|
|
auth: str = None,
|
|
|
|
proxy: str = None,
|
2024-01-24 01:48:11 +03:00
|
|
|
connector: BaseConnector = None,
|
2023-08-28 02:43:45 +03:00
|
|
|
**kwargs
|
2023-10-09 11:22:17 +03:00
|
|
|
) -> AsyncResult:
|
2023-07-28 13:07:17 +03:00
|
|
|
headers = {
|
2023-08-28 02:43:45 +03:00
|
|
|
"authority": "liaobots.com",
|
|
|
|
"content-type": "application/json",
|
2023-09-05 18:27:24 +03:00
|
|
|
"origin": cls.url,
|
2023-10-23 10:46:25 +03:00
|
|
|
"referer": f"{cls.url}/",
|
2023-08-28 02:43:45 +03:00
|
|
|
"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",
|
2023-07-28 13:07:17 +03:00
|
|
|
}
|
2023-08-28 02:43:45 +03:00
|
|
|
async with ClientSession(
|
2024-01-01 00:59:24 +03:00
|
|
|
headers=headers,
|
2024-01-24 01:48:11 +03:00
|
|
|
cookie_jar=cls._cookie_jar,
|
2024-02-26 13:25:07 +03:00
|
|
|
connector=get_connector(connector, proxy, True)
|
2023-08-28 02:43:45 +03:00
|
|
|
) as session:
|
2024-08-29 09:03:32 +03:00
|
|
|
models = cls.get_models()
|
2024-05-18 08:37:37 +03:00
|
|
|
data = {
|
|
|
|
"conversationId": str(uuid.uuid4()),
|
2024-08-29 09:03:32 +03:00
|
|
|
"model": models[cls.get_model(model)],
|
2024-05-18 08:37:37 +03:00
|
|
|
"messages": messages,
|
|
|
|
"key": "",
|
|
|
|
"prompt": kwargs.get("system_message", "You are a helpful assistant."),
|
|
|
|
}
|
2023-10-05 06:13:37 +03:00
|
|
|
if not cls._auth_code:
|
|
|
|
async with session.post(
|
|
|
|
"https://liaobots.work/recaptcha/api/login",
|
|
|
|
data={"token": "abcdefghijklmnopqrst"},
|
|
|
|
verify_ssl=False
|
|
|
|
) as response:
|
2024-03-12 04:06:06 +03:00
|
|
|
await raise_for_status(response)
|
2024-05-18 08:37:37 +03:00
|
|
|
try:
|
2024-08-29 09:03:32 +03:00
|
|
|
await cls.ensure_auth_code(session)
|
2024-05-18 08:37:37 +03:00
|
|
|
async with session.post(
|
|
|
|
"https://liaobots.work/api/chat",
|
|
|
|
json=data,
|
2024-08-29 09:03:32 +03:00
|
|
|
headers={"x-auth-code": cls._auth_code},
|
2024-05-18 08:37:37 +03:00
|
|
|
verify_ssl=False
|
|
|
|
) as response:
|
|
|
|
await raise_for_status(response)
|
|
|
|
async for chunk in response.content.iter_any():
|
|
|
|
if b"<html coupert-item=" in chunk:
|
|
|
|
raise RuntimeError("Invalid session")
|
|
|
|
if chunk:
|
|
|
|
yield chunk.decode(errors="ignore")
|
|
|
|
except:
|
2024-08-29 09:03:32 +03:00
|
|
|
await cls.initialize_auth_code(session)
|
2024-05-18 08:37:37 +03:00
|
|
|
async with session.post(
|
|
|
|
"https://liaobots.work/api/chat",
|
|
|
|
json=data,
|
|
|
|
headers={"x-auth-code": cls._auth_code},
|
|
|
|
verify_ssl=False
|
|
|
|
) as response:
|
|
|
|
await raise_for_status(response)
|
|
|
|
async for chunk in response.content.iter_any():
|
|
|
|
if b"<html coupert-item=" in chunk:
|
|
|
|
raise RuntimeError("Invalid session")
|
|
|
|
if chunk:
|
|
|
|
yield chunk.decode(errors="ignore")
|
2024-07-08 23:49:38 +03:00
|
|
|
@classmethod
|
|
|
|
def get_model(cls, model: str) -> str:
|
|
|
|
"""
|
|
|
|
Retrieve the internal model identifier based on the provided model name or alias.
|
|
|
|
"""
|
|
|
|
if model in cls.model_aliases:
|
|
|
|
model = cls.model_aliases[model]
|
2024-08-29 09:03:32 +03:00
|
|
|
models = cls.get_models()
|
2024-07-08 23:49:38 +03:00
|
|
|
if model not in models:
|
|
|
|
raise ValueError(f"Model '{model}' is not supported.")
|
|
|
|
return model
|
|
|
|
@classmethod
|
|
|
|
def is_supported(cls, model: str) -> bool:
|
|
|
|
"""
|
|
|
|
Check if the given model is supported.
|
|
|
|
"""
|
2024-08-29 09:03:32 +03:00
|
|
|
models = cls.get_models()
|
2024-07-08 23:49:38 +03:00
|
|
|
return model in models or model in cls.model_aliases
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def initialize_auth_code(cls, session: ClientSession) -> None:
|
|
|
|
"""
|
|
|
|
Initialize the auth code by making the necessary login requests.
|
|
|
|
"""
|
|
|
|
async with session.post(
|
|
|
|
"https://liaobots.work/api/user",
|
|
|
|
json={"authcode": "pTIQr4FTnVRfr"},
|
|
|
|
verify_ssl=False
|
|
|
|
) as response:
|
|
|
|
await raise_for_status(response)
|
|
|
|
cls._auth_code = (await response.json(content_type=None))["authCode"]
|
|
|
|
if not cls._auth_code:
|
|
|
|
raise RuntimeError("Empty auth code")
|
|
|
|
cls._cookie_jar = session.cookie_jar
|
|
|
|
@classmethod
|
|
|
|
async def ensure_auth_code(cls, session: ClientSession) -> None:
|
|
|
|
"""
|
|
|
|
Ensure the auth code is initialized, and if not, perform the initialization.
|
|
|
|
"""
|
|
|
|
if not cls._auth_code:
|
|
|
|
await cls.initialize_auth_code(session)
|
2024-08-29 09:03:32 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def refresh_auth_code(cls, session: ClientSession) -> None:
|
|
|
|
"""
|
|
|
|
Refresh the auth code by making a new request.
|
|
|
|
"""
|
|
|
|
await cls.initialize_auth_code(session)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def get_auth_code(cls, session: ClientSession) -> str:
|
|
|
|
"""
|
|
|
|
Get the current auth code, initializing it if necessary.
|
|
|
|
"""
|
|
|
|
await cls.ensure_auth_code(session)
|
|
|
|
return cls._auth_code
|