summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Acytoo.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-13 18:58:52 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-13 18:58:52 +0100
commit2f64bc99efed1c7ea44e116ab7db12d5f75412a1 (patch)
tree331ec9190971b8f33521f1bcf9adebc088510f70 /g4f/Provider/Acytoo.py
parentAdd Berlin and Koala Provider (diff)
downloadgpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.gz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.bz2
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.lz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.xz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.zst
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.zip
Diffstat (limited to 'g4f/Provider/Acytoo.py')
-rw-r--r--g4f/Provider/Acytoo.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/g4f/Provider/Acytoo.py b/g4f/Provider/Acytoo.py
deleted file mode 100644
index 4dee176a..00000000
--- a/g4f/Provider/Acytoo.py
+++ /dev/null
@@ -1,51 +0,0 @@
-from __future__ import annotations
-
-from aiohttp import ClientSession
-
-from ..typing import AsyncResult, Messages
-from .base_provider import AsyncGeneratorProvider
-
-
-class Acytoo(AsyncGeneratorProvider):
- url = 'https://chat.acytoo.com'
- working = False
- supports_message_history = True
- supports_gpt_35_turbo = True
-
- @classmethod
- async def create_async_generator(
- cls,
- model: str,
- messages: Messages,
- proxy: str = None,
- **kwargs
- ) -> AsyncResult:
- async with ClientSession(
- headers=_create_header()
- ) as session:
- async with session.post(
- 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()
-
-
-def _create_header():
- return {
- 'accept': '*/*',
- 'content-type': 'application/json',
- }
-
-
-def _create_payload(messages: Messages, temperature: float = 0.5, **kwargs):
- return {
- 'key' : '',
- 'model' : 'gpt-3.5-turbo',
- 'messages' : messages,
- 'temperature' : temperature,
- 'password' : ''
- } \ No newline at end of file