From 670b2b664ef5c3149de97e08b5c14bd015e74aff Mon Sep 17 00:00:00 2001 From: Johannes Date: Wed, 26 Apr 2023 08:00:06 +0200 Subject: fixes #143 missing cf_clearance raises error Phind Search.create now raises ValueError if missing cf_clearance. --- phind/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phind') diff --git a/phind/__init__.py b/phind/__init__.py index 9b1650e0..b4e518bc 100644 --- a/phind/__init__.py +++ b/phind/__init__.py @@ -53,7 +53,7 @@ class PhindResponse: class Search: def create(prompt: str, actualSearch: bool = True, language: str = 'en') -> dict: # None = no search - if user_agent == '': + if user_agent == '' or cf_clearance == '': raise ValueError('user_agent must be set, refer to documentation') if not actualSearch: @@ -281,4 +281,4 @@ class StreamingCompletion: @staticmethod def handle_stream_response(response): - StreamingCompletion.message_queue.put(response) \ No newline at end of file + StreamingCompletion.message_queue.put(response) -- cgit v1.2.3