diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-27 20:16:07 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-27 20:16:07 +0200 |
commit | 10104774c10cccf95bbebcafd17c0a85207583e0 (patch) | |
tree | 6fec52831117ee43fe7141a153b7e123ff09d469 /testing/phind_test.py | |
parent | _ (diff) | |
parent | Merge pull request #205 from AymaneHrouch/reformat__code (diff) | |
download | gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar.gz gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar.bz2 gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar.lz gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar.xz gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.tar.zst gpt4free-10104774c10cccf95bbebcafd17c0a85207583e0.zip |
Diffstat (limited to 'testing/phind_test.py')
-rw-r--r-- | testing/phind_test.py | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/testing/phind_test.py b/testing/phind_test.py index 2f2560a1..ed8ff65e 100644 --- a/testing/phind_test.py +++ b/testing/phind_test.py @@ -2,18 +2,19 @@ import phind # set cf_clearance cookie ( not needed at the moment) phind.cf_clearance = 'MDzwnr3ZWk_ap8u.iwwMR5F3WccfOkhUy_zGNDpcF3s-1682497341-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' +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 + 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) @@ -22,11 +23,12 @@ 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 + 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 + print(result.completion.choices[0].text, end='', flush=True) |