2023-09-26 08:03:37 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import time
|
|
|
|
import hashlib
|
|
|
|
|
2023-11-13 17:58:52 +00:00
|
|
|
from ...typing import AsyncResult, Messages
|
|
|
|
from ...requests import StreamSession
|
|
|
|
from ..base_provider import AsyncGeneratorProvider
|
2023-09-26 08:03:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Aibn(AsyncGeneratorProvider):
|
2023-10-27 20:59:14 +00:00
|
|
|
url = "https://aibn.cc"
|
|
|
|
working = False
|
|
|
|
supports_message_history = True
|
2023-09-26 08:03:37 +00:00
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-09 08:22:17 +00:00
|
|
|
messages: Messages,
|
|
|
|
proxy: str = None,
|
|
|
|
timeout: int = 120,
|
2023-09-26 08:03:37 +00:00
|
|
|
**kwargs
|
2023-10-09 08:22:17 +00:00
|
|
|
) -> AsyncResult:
|
|
|
|
async with StreamSession(
|
|
|
|
impersonate="chrome107",
|
|
|
|
proxies={"https": proxy},
|
|
|
|
timeout=timeout
|
|
|
|
) as session:
|
2023-09-26 08:03:37 +00:00
|
|
|
timestamp = int(time.time())
|
|
|
|
data = {
|
|
|
|
"messages": messages,
|
|
|
|
"pass": None,
|
|
|
|
"sign": generate_signature(timestamp, messages[-1]["content"]),
|
|
|
|
"time": timestamp
|
|
|
|
}
|
|
|
|
async with session.post(f"{cls.url}/api/generate", json=data) as response:
|
|
|
|
response.raise_for_status()
|
2023-10-02 00:04:22 +00:00
|
|
|
async for chunk in response.iter_content():
|
2023-09-26 08:03:37 +00:00
|
|
|
yield chunk.decode()
|
|
|
|
|
|
|
|
|
|
|
|
def generate_signature(timestamp: int, message: str, secret: str = "undefined"):
|
|
|
|
data = f"{timestamp}:{message}:{secret}"
|
|
|
|
return hashlib.sha256(data.encode()).hexdigest()
|