summaryrefslogtreecommitdiffstats
path: root/phind
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-22 14:54:01 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-22 14:54:01 +0200
commit789b209d03ba45d4dbe9af924f5806abda371cd9 (patch)
tree2518e63234b6a437745070d90810098a96fca3e4 /phind
parentMerge branch 'main' of https://github.com/xtekky/gpt4free (diff)
downloadgpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.gz
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.bz2
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.lz
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.xz
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.zst
gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.zip
Diffstat (limited to 'phind')
-rw-r--r--phind/README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/phind/README.md b/phind/README.md
new file mode 100644
index 00000000..c9b85dbb
--- /dev/null
+++ b/phind/README.md
@@ -0,0 +1,33 @@
+### Example: `phind` (use like openai pypi package) <a name="example-phind"></a>
+
+```python
+import phind
+
+# set cf_clearance cookie
+phind.cf_clearance = 'xx.xx-1682166681-0-160'
+
+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)
+
+# normal completion
+result = phind.Completion.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)
+```