diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2024-10-15 11:51:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 11:51:53 +0200 |
commit | 5ed3467d07181e876d957984c16782d687abd3b5 (patch) | |
tree | 23bd0fd3481d81fca70ac3c7842cb7ffa8f6497f /g4f/Provider/Binjie.py | |
parent | Merge pull request #2268 from yjg30737/patch-1 (diff) | |
parent | Updated(docs/client.md) (diff) | |
download | gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar.gz gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar.bz2 gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar.lz gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar.xz gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.tar.zst gpt4free-5ed3467d07181e876d957984c16782d687abd3b5.zip |
Diffstat (limited to 'g4f/Provider/Binjie.py')
-rw-r--r-- | g4f/Provider/Binjie.py | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/g4f/Provider/Binjie.py b/g4f/Provider/Binjie.py deleted file mode 100644 index 90f9ec3c..00000000 --- a/g4f/Provider/Binjie.py +++ /dev/null @@ -1,65 +0,0 @@ -from __future__ import annotations - -import random -from ..requests import StreamSession - -from ..typing import AsyncResult, Messages -from .base_provider import AsyncGeneratorProvider, format_prompt - - -class Binjie(AsyncGeneratorProvider): - url = "https://chat18.aichatos8.com" - working = True - supports_gpt_4 = True - supports_stream = True - supports_system_message = True - supports_message_history = True - - @staticmethod - async def create_async_generator( - model: str, - messages: Messages, - proxy: str = None, - timeout: int = 120, - **kwargs, - ) -> AsyncResult: - async with StreamSession( - headers=_create_header(), proxies={"https": proxy}, timeout=timeout - ) as session: - payload = _create_payload(messages, **kwargs) - async with session.post("https://api.binjie.fun/api/generateStream", json=payload) as response: - response.raise_for_status() - async for chunk in response.iter_content(): - if chunk: - chunk = chunk.decode() - if "sorry, 您的ip已由于触发防滥用检测而被封禁" in chunk: - raise RuntimeError("IP address is blocked by abuse detection.") - yield chunk - - -def _create_header(): - return { - "accept" : "application/json, text/plain, */*", - "content-type" : "application/json", - "origin" : "https://chat18.aichatos8.com", - "referer" : "https://chat18.aichatos8.com/" - } - - -def _create_payload( - messages: Messages, - system_message: str = "", - user_id: int = None, - **kwargs -): - if not user_id: - user_id = random.randint(1690000544336, 2093025544336) - return { - "prompt": format_prompt(messages), - "network": True, - "system": system_message, - "withoutContext": False, - "stream": True, - "userId": f"#/chat/{user_id}" - } - |