summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/deprecated/Aibn.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2023-11-15 18:25:28 +0100
committerGitHub <noreply@github.com>2023-11-15 18:25:28 +0100
commitf04e415becbf45b1ef5a250e39f838be7608c59a (patch)
treee6712e4ed552a98d60ef8a4a6bd9d48d85a04bd7 /g4f/Provider/deprecated/Aibn.py
parentMerge pull request #1251 from guspan-tanadi/READMENotesection (diff)
parentFix Chatgpt4Online Provider (diff)
downloadgpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar.gz
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar.bz2
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar.lz
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar.xz
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.tar.zst
gpt4free-f04e415becbf45b1ef5a250e39f838be7608c59a.zip
Diffstat (limited to 'g4f/Provider/deprecated/Aibn.py')
-rw-r--r--g4f/Provider/deprecated/Aibn.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/g4f/Provider/deprecated/Aibn.py b/g4f/Provider/deprecated/Aibn.py
new file mode 100644
index 00000000..60cef1e4
--- /dev/null
+++ b/g4f/Provider/deprecated/Aibn.py
@@ -0,0 +1,58 @@
+from __future__ import annotations
+
+import time
+import hashlib
+
+from ...typing import AsyncResult, Messages
+from ...requests import StreamSession
+from ..base_provider import AsyncGeneratorProvider
+
+
+class Aibn(AsyncGeneratorProvider):
+ url = "https://aibn.cc"
+ 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,
+ timeout: int = 120,
+ **kwargs
+ ) -> AsyncResult:
+ async with StreamSession(
+ impersonate="chrome107",
+ proxies={"https": proxy},
+ timeout=timeout
+ ) as session:
+ 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()
+ async for chunk in response.iter_content():
+ yield chunk.decode()
+
+ @classmethod
+ @property
+ def params(cls):
+ params = [
+ ("model", "str"),
+ ("messages", "list[dict[str, str]]"),
+ ("stream", "bool"),
+ ("temperature", "float"),
+ ]
+ param = ", ".join([": ".join(p) for p in params])
+ return f"g4f.provider.{cls.__name__} supports: ({param})"
+
+
+def generate_signature(timestamp: int, message: str, secret: str = "undefined"):
+ data = f"{timestamp}:{message}:{secret}"
+ return hashlib.sha256(data.encode()).hexdigest() \ No newline at end of file