diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-18 11:24:43 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-18 11:24:43 +0200 |
commit | 2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7 (patch) | |
tree | 4a4c5003a088cbad966abdb34ea5d858a57c20c7 /phind_test.py | |
parent | testing (diff) | |
download | gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar.gz gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar.bz2 gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar.lz gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar.xz gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.tar.zst gpt4free-2bcafcd27c90fd7b31cdc2fd2b25aaa6047ac3e7.zip |
Diffstat (limited to 'phind_test.py')
-rw-r--r-- | phind_test.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/phind_test.py b/phind_test.py new file mode 100644 index 00000000..e3148eb6 --- /dev/null +++ b/phind_test.py @@ -0,0 +1,13 @@ +import phind + +prompt = 'hello world' + +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)
\ No newline at end of file |