summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-23 18:57:39 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-23 18:57:39 +0200
commit20af89c0c29abc63ef5e84e669fd4ef14998de40 (patch)
treeefacad7db06c9b317c80b2d1491b474165f22a8b /testing
parentUpdate ora_gpt4.py (diff)
downloadgpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar.gz
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar.bz2
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar.lz
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar.xz
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.tar.zst
gpt4free-20af89c0c29abc63ef5e84e669fd4ef14998de40.zip
Diffstat (limited to 'testing')
-rw-r--r--testing/phind_test.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/testing/phind_test.py b/testing/phind_test.py
deleted file mode 100644
index 3e9217e1..00000000
--- a/testing/phind_test.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import phind
-
-# set cf_clearance cookie
-phind.cf_clearance = 'hWfIdYKgcnxnU5ayolWe9t7eEmAbULywS.qfHkm1T_A-1682166681-0-160'
-
-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