summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/deprecated/ChatForAi.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-10-13 12:33:57 +0200
committerGitHub <noreply@github.com>2023-10-13 12:33:57 +0200
commit99bc58ab9972e245527d1342ccea217bbf8c7004 (patch)
tree2a29e02cc993b155042c817735b3a3c81a92fb10 /g4f/Provider/deprecated/ChatForAi.py
parent~ | Merge pull request #1064 from Lin-jun-xiang/ignore_providers (diff)
parentDeprecate ChatForAi (diff)
downloadgpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.gz
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.bz2
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.lz
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.xz
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.zst
gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.zip
Diffstat (limited to 'g4f/Provider/deprecated/ChatForAi.py')
-rw-r--r--g4f/Provider/deprecated/ChatForAi.py55
1 files changed, 55 insertions, 0 deletions
diff --git a/g4f/Provider/deprecated/ChatForAi.py b/g4f/Provider/deprecated/ChatForAi.py
new file mode 100644
index 00000000..ab4cd89c
--- /dev/null
+++ b/g4f/Provider/deprecated/ChatForAi.py
@@ -0,0 +1,55 @@
+from __future__ import annotations
+
+from ...typing import AsyncResult, Messages
+from ...requests import StreamSession
+from ..base_provider import AsyncGeneratorProvider
+
+
+class ChatForAi(AsyncGeneratorProvider):
+ url = "https://chatforai.com"
+ supports_gpt_35_turbo = True
+
+ @classmethod
+ async def create_async_generator(
+ cls,
+ model: str,
+ messages: Messages,
+ proxy: str = None,
+ timeout: int = 120,
+ **kwargs
+ ) -> AsyncResult:
+ async with StreamSession(impersonate="chrome107", proxies={"https": proxy}, timeout=timeout) as session:
+ prompt = messages[-1]["content"]
+ data = {
+ "conversationId": "temp",
+ "conversationType": "chat_continuous",
+ "botId": "chat_continuous",
+ "globalSettings":{
+ "baseUrl": "https://api.openai.com",
+ "model": model if model else "gpt-3.5-turbo",
+ "messageHistorySize": 5,
+ "temperature": 0.7,
+ "top_p": 1,
+ **kwargs
+ },
+ "botSettings": {},
+ "prompt": prompt,
+ "messages": messages,
+ }
+ async with session.post(f"{cls.url}/api/handle/provider-openai", json=data) as response:
+ response.raise_for_status()
+ async for chunk in response.iter_content():
+ if b"https://chatforai.store" in chunk:
+ raise RuntimeError(f"Response: {chunk.decode()}")
+ yield chunk.decode()
+
+ @classmethod
+ @property
+ def params(cls):
+ params = [
+ ("model", "str"),
+ ("messages", "list[dict[str, str]]"),
+ ("stream", "bool"),
+ ]
+ param = ", ".join([": ".join(p) for p in params])
+ return f"g4f.provider.{cls.__name__} supports: ({param})" \ No newline at end of file