diff options
author | Raju Komati <komatiraju032@gmail.com> | 2023-04-24 20:36:24 +0200 |
---|---|---|
committer | Raju Komati <komatiraju032@gmail.com> | 2023-04-24 20:36:24 +0200 |
commit | 98afd5b9854c242dd05808951935ef61ffc36e98 (patch) | |
tree | ca4d9b08f9aca88a4daf2fc0571699359c55824c /phind/phind_test.py | |
parent | added validation for model parameter (diff) | |
parent | userid and session_token (diff) | |
download | gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar.gz gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar.bz2 gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar.lz gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar.xz gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.tar.zst gpt4free-98afd5b9854c242dd05808951935ef61ffc36e98.zip |
Diffstat (limited to 'phind/phind_test.py')
-rw-r--r-- | phind/phind_test.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phind/phind_test.py b/phind/phind_test.py new file mode 100644 index 00000000..94354fd8 --- /dev/null +++ b/phind/phind_test.py @@ -0,0 +1,32 @@ +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 |