gpt4free/g4f/Provider/deprecated/Acytoo.py

51 lines
1.4 KiB
Python
Raw Normal View History

from __future__ import annotations
from aiohttp import ClientSession
2023-07-28 06:07:17 -04:00
2023-11-13 12:58:52 -05:00
from ...typing import AsyncResult, Messages
from ..base_provider import AsyncGeneratorProvider
2023-07-28 06:07:17 -04:00
class Acytoo(AsyncGeneratorProvider):
url = 'https://chat.acytoo.com'
2023-10-15 19:47:10 -04:00
working = False
2023-10-27 16:59:14 -04:00
supports_message_history = True
2023-07-28 06:07:17 -04:00
supports_gpt_35_turbo = True
2023-08-24 15:32:22 -04:00
@classmethod
async def create_async_generator(
2023-08-24 15:32:22 -04:00
cls,
2023-07-28 06:07:17 -04:00
model: str,
2023-10-09 04:22:17 -04:00
messages: Messages,
proxy: str = None,
**kwargs
2023-10-09 04:22:17 -04:00
) -> AsyncResult:
async with ClientSession(
headers=_create_header()
) as session:
async with session.post(
2023-10-10 03:49:29 -04:00
f'{cls.url}/api/completions',
proxy=proxy,
json=_create_payload(messages, **kwargs)
) as response:
response.raise_for_status()
async for stream in response.content.iter_any():
if stream:
yield stream.decode()
2023-07-28 06:07:17 -04:00
def _create_header():
return {
2023-08-27 11:37:44 -04:00
'accept': '*/*',
'content-type': 'application/json',
2023-07-28 06:07:17 -04:00
}
2023-10-10 03:49:29 -04:00
def _create_payload(messages: Messages, temperature: float = 0.5, **kwargs):
2023-07-28 06:07:17 -04:00
return {
2023-08-27 11:37:44 -04:00
'key' : '',
'model' : 'gpt-3.5-turbo',
'messages' : messages,
2023-08-27 11:37:44 -04:00
'temperature' : temperature,
'password' : ''
}