summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/not_working/Bestim.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2024-09-07 21:37:24 +0200
committerGitHub <noreply@github.com>2024-09-07 21:37:24 +0200
commit07fa87b4d180259d1da86afb565e14ac3d60d50b (patch)
treed474a2bf8bd79cf94bfa48cbaca3917659dd19be /g4f/Provider/not_working/Bestim.py
parentMerge pull request #2206 from Parthsadaria/patch-1 (diff)
parentg4f/models.py g4f/Provider/MagickPen.py (diff)
downloadgpt4free-0.3.2.6.tar
gpt4free-0.3.2.6.tar.gz
gpt4free-0.3.2.6.tar.bz2
gpt4free-0.3.2.6.tar.lz
gpt4free-0.3.2.6.tar.xz
gpt4free-0.3.2.6.tar.zst
gpt4free-0.3.2.6.zip
Diffstat (limited to 'g4f/Provider/not_working/Bestim.py')
-rw-r--r--g4f/Provider/not_working/Bestim.py56
1 files changed, 0 insertions, 56 deletions
diff --git a/g4f/Provider/not_working/Bestim.py b/g4f/Provider/not_working/Bestim.py
deleted file mode 100644
index 94a4d32b..00000000
--- a/g4f/Provider/not_working/Bestim.py
+++ /dev/null
@@ -1,56 +0,0 @@
-from __future__ import annotations
-
-from ...typing import Messages
-from ..base_provider import BaseProvider, CreateResult
-from ...requests import get_session_from_browser
-from uuid import uuid4
-
-class Bestim(BaseProvider):
- url = "https://chatgpt.bestim.org"
- working = False
- supports_gpt_35_turbo = True
- supports_message_history = True
- supports_stream = True
-
- @classmethod
- def create_completion(
- cls,
- model: str,
- messages: Messages,
- stream: bool,
- proxy: str = None,
- **kwargs
- ) -> CreateResult:
- session = get_session_from_browser(cls.url, proxy=proxy)
- headers = {
- 'Accept': 'application/json, text/event-stream',
- }
- data = {
- "messagesHistory": [{
- "id": str(uuid4()),
- "content": m["content"],
- "from": "you" if m["role"] == "user" else "bot"
- } for m in messages],
- "type": "chat",
- }
- response = session.post(
- url="https://chatgpt.bestim.org/chat/send2/",
- json=data,
- headers=headers,
- stream=True
- )
- response.raise_for_status()
- for line in response.iter_lines():
- if not line.startswith(b"event: trylimit"):
- yield line.decode().removeprefix("data: ")
-
-
-
-
-
-
-
-
-
-
-