diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
commit | 74ecdee78466104e57eb7488e682b564988fcd88 (patch) | |
tree | bbc764ba3248e80f20dde55e5b382b3f3d382575 /g4f/Provider/Theb.py | |
parent | add proxy and remove stream (diff) | |
parent | ~ (diff) | |
download | gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.gz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.bz2 gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.lz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.xz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.zst gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.zip |
Diffstat (limited to 'g4f/Provider/Theb.py')
-rw-r--r-- | g4f/Provider/Theb.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/g4f/Provider/Theb.py b/g4f/Provider/Theb.py new file mode 100644 index 00000000..c6fd6f19 --- /dev/null +++ b/g4f/Provider/Theb.py @@ -0,0 +1,39 @@ +import json + +from curl_cffi import requests + +from ..typing import Any, CreateResult +from .base_provider import BaseProvider + + +class Theb(BaseProvider): + url = "https://theb.ai" + working = False + supports_stream = True + supports_gpt_35_turbo = True + + @staticmethod + def create_completion( + model: str, + messages: list[dict[str, str]], + stream: bool, + **kwargs: Any, + ) -> CreateResult: + prompt = messages[-1]["content"] + + headers = { + "accept": "application/json, text/plain, */*", + "content-type": "application/json", + } + + json_data: dict[str, Any] = {"prompt": prompt, "options": {}} + response = requests.post( + "https://chatbot.theb.ai/api/chat-process", + headers=headers, + json=json_data, + impersonate="chrome110", + ) + response.raise_for_status() + line = response.text.splitlines()[-1] + text = json.loads(line)["text"] + yield text |