Skip to content

Commit

Permalink
phind removed cloudflare
Browse files Browse the repository at this point in the history
  • Loading branch information
xtekky committed Apr 24, 2023
1 parent 4f94ba1 commit 77006dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions phind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
2 changes: 1 addition & 1 deletion phind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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:

Expand Down
8 changes: 4 additions & 4 deletions phind/phind_test.py → testing/phind_test.py
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -22,7 +22,7 @@
# 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,
Expand Down

0 comments on commit 77006dd

Please sign in to comment.