summaryrefslogtreecommitdiffstats
path: root/testing/phind_test.py
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-27 20:26:36 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-27 20:26:36 +0200
commit011d0babc265acfe35927c898a276ce8b9a261f3 (patch)
treedce934fe1153ec116a863baeca89a1ca590ab9bf /testing/phind_test.py
parentMerge branch 'main' of https://github.com/xtekky/gpt4free (diff)
downloadgpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar.gz
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar.bz2
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar.lz
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar.xz
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.tar.zst
gpt4free-011d0babc265acfe35927c898a276ce8b9a261f3.zip
Diffstat (limited to '')
-rw-r--r--testing/phind_test.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/phind_test.py b/testing/phind_test.py
deleted file mode 100644
index ed8ff65e..00000000
--- a/testing/phind_test.py
+++ /dev/null
@@ -1,34 +0,0 @@
-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'
-
-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)