mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
|
from __future__ import annotations
|
||
|
|
||
|
from aiohttp import ClientSession
|
||
|
from hashlib import sha256
|
||
|
|
||
|
from ..typing import AsyncGenerator
|
||
|
from .base_provider import AsyncGeneratorProvider
|
||
|
|
||
|
|
||
|
class Cromicle(AsyncGeneratorProvider):
|
||
|
url = 'https://cromicle.top'
|
||
|
working = True
|
||
|
supports_gpt_35_turbo = True
|
||
|
|
||
|
@classmethod
|
||
|
async def create_async_generator(
|
||
|
cls,
|
||
|
model: str,
|
||
|
messages: list[dict[str, str]],
|
||
|
proxy: str = None,
|
||
|
**kwargs
|
||
|
) -> AsyncGenerator:
|
||
|
|
||
|
async with ClientSession(
|
||
|
headers=_create_header()
|
||
|
) as session:
|
||
|
async with session.post(
|
||
|
cls.url + '/chat',
|
||
|
proxy=proxy,
|
||
|
json=_create_payload(message, **kwargs)
|
||
|
) as response:
|
||
|
response.raise_for_status()
|
||
|
async for stream in response.content.iter_any():
|
||
|
if stream:
|
||
|
yield stream.decode()
|
||
|
|
||
|
|
||
|
def _create_header():
|
||
|
return {
|
||
|
'accept': '*/*',
|
||
|
'content-type': 'application/json',
|
||
|
}
|
||
|
|
||
|
|
||
|
def _create_payload(message: str):
|
||
|
return {
|
||
|
'message' : message,
|
||
|
'token' : 'abc',
|
||
|
'hash' : sha256(token.encode() + message.encode()).hexdigest()
|
||
|
}
|