summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrazrab <razrab@PimoLin>2023-10-24 17:30:24 +0200
committerrazrab <razrab@PimoLin>2023-10-24 17:30:24 +0200
commitfd2b52823b45d201c8b38183b71ee90a194e61fd (patch)
treee0bf3316788fb630c6ec1e414cd4b59e485f5cc2
parentMerge pull request #1144 from Ayushpanditmoto/main (diff)
downloadgpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar.gz
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar.bz2
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar.lz
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar.xz
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.tar.zst
gpt4free-fd2b52823b45d201c8b38183b71ee90a194e61fd.zip
-rw-r--r--g4f/Provider/ChatBase.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/g4f/Provider/ChatBase.py b/g4f/Provider/ChatBase.py
index 8f9e2aad..7190e617 100644
--- a/g4f/Provider/ChatBase.py
+++ b/g4f/Provider/ChatBase.py
@@ -10,6 +10,8 @@ class ChatBase(AsyncGeneratorProvider):
url = "https://www.chatbase.co"
supports_gpt_35_turbo = True
working = True
+ list_incorrect_responses = ["Hmm, I am not sure. Email support@chatbase.co for more info.",
+ "I can only provide support and information about Chatbase"]
@classmethod
async def create_async_generator(
@@ -41,7 +43,12 @@ class ChatBase(AsyncGeneratorProvider):
async with session.post("https://www.chatbase.co/api/fe/chat", json=data, proxy=proxy) as response:
response.raise_for_status()
+ response_data = ""
async for stream in response.content.iter_any():
+ response_data += stream.decode()
+ for incorrect_response in cls.list_incorrect_responses:
+ if incorrect_response in response_data:
+ raise RuntimeError("Incorrect response")
yield stream.decode()
@classmethod