From 77006dd9e048ece72d03ea1aec2bbc1adc1a55c6 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Mon, 24 Apr 2023 19:50:45 +0100 Subject: phind removed cloudflare --- phind/README.md | 6 +++--- phind/__init__.py | 2 +- phind/phind_test.py | 32 -------------------------------- testing/phind_test.py | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 36 insertions(+), 36 deletions(-) delete mode 100644 phind/phind_test.py create mode 100644 testing/phind_test.py 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/phind/phind_test.py deleted file mode 100644 index 94354fd8..00000000 --- a/phind/phind_test.py +++ /dev/null @@ -1,32 +0,0 @@ -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' - -prompt = 'hello world' - -# normal completion -result = phind.Completion.create( - model = 'gpt-4', - prompt = prompt, - results = phind.Search.create(prompt, actualSearch = False), # create search (set actualSearch to False to disable internet) - creative = False, - detailed = False, - codeContext = '') # up to 3000 chars of code - -print(result.completion.choices[0].text) - -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', - prompt = prompt, - results = phind.Search.create(prompt, actualSearch = True), # create search (set actualSearch to False to disable internet) - creative = False, - detailed = False, - codeContext = ''): # up to 3000 chars of code - - print(result.completion.choices[0].text, end='', flush=True) \ No newline at end of file diff --git a/testing/phind_test.py b/testing/phind_test.py new file mode 100644 index 00000000..d72db090 --- /dev/null +++ b/testing/phind_test.py @@ -0,0 +1,32 @@ +import phind + +# 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' + +# normal completion +result = phind.Completion.create( + model = 'gpt-4', + prompt = prompt, + results = phind.Search.create(prompt, actualSearch = False), # create search (set actualSearch to False to disable internet) + creative = False, + detailed = False, + codeContext = '') # up to 3000 chars of code + +print(result.completion.choices[0].text) + +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-4', + prompt = prompt, + results = phind.Search.create(prompt, actualSearch = True), # create search (set actualSearch to False to disable internet) + creative = False, + detailed = False, + codeContext = ''): # up to 3000 chars of code + + print(result.completion.choices[0].text, end='', flush=True) \ No newline at end of file -- cgit v1.2.3