diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-24 20:50:45 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-24 20:50:45 +0200 |
commit | 77006dd9e048ece72d03ea1aec2bbc1adc1a55c6 (patch) | |
tree | dd491ba40e5e61bb86a3c58e93d03c93b465d1bc | |
parent | userid and session_token (diff) | |
download | gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar.gz gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar.bz2 gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar.lz gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar.xz gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.tar.zst gpt4free-77006dd9e048ece72d03ea1aec2bbc1adc1a55c6.zip |
-rw-r--r-- | phind/README.md | 6 | ||||
-rw-r--r-- | phind/__init__.py | 2 | ||||
-rw-r--r-- | testing/phind_test.py (renamed from phind/phind_test.py) | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/phind/README.md b/phind/README.md index f17f487f..dcb3cbce 100644 --- a/phind/README.md +++ b/phind/README.md @@ -3,9 +3,9 @@ ```python import phind -# set cf_clearance cookie -phind.cf_clearance = 'xx.xx-1682166681-0-160' -phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' # same as the one from browser you got cf_clearance from +# set cf_clearance cookie (not needed anymore) +# phind.cf_clearance = 'xx.xx-1682166681-0-160' +# phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' # same as the one from browser you got cf_clearance from prompt = 'who won the quatar world cup' diff --git a/phind/__init__.py b/phind/__init__.py index 629befa5..9b1650e0 100644 --- a/phind/__init__.py +++ b/phind/__init__.py @@ -8,7 +8,7 @@ from re import findall from curl_cffi.requests import post cf_clearance = '' -user_agent = '' +user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' class PhindResponse: diff --git a/phind/phind_test.py b/testing/phind_test.py index 94354fd8..d72db090 100644 --- a/phind/phind_test.py +++ b/testing/phind_test.py @@ -1,8 +1,8 @@ import phind -# set cf_clearance cookie -phind.cf_clearance = 'heguhSRBB9d0sjLvGbQECS8b80m2BQ31xEmk9ChshKI-1682268995-0-160' -phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' +# set cf_clearance cookie ( not needed at the moment) +phind.cf_clearance = '' +phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' prompt = 'hello world' @@ -22,7 +22,7 @@ prompt = 'who won the quatar world cup' # help needed: not getting newlines from the stream, please submit a PR if you know how to fix this # stream completion for result in phind.StreamingCompletion.create( - model = 'gpt-3.5', + model = 'gpt-4', prompt = prompt, results = phind.Search.create(prompt, actualSearch = True), # create search (set actualSearch to False to disable internet) creative = False, |