From 3388d7069666922a0849a86bd344521e51206106 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Tue, 18 Apr 2023 16:15:52 +0100 Subject: phind.com api (gpt4 & search) --- phind/__init__.py | 2 +- phind_test.py | 13 ------------- testing/phind_test.py | 13 +++++++++++++ 3 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 phind_test.py create mode 100644 testing/phind_test.py diff --git a/phind/__init__.py b/phind/__init__.py index 83a6840a..8177c8dd 100644 --- a/phind/__init__.py +++ b/phind/__init__.py @@ -82,7 +82,7 @@ class Search: } return client.post('https://www.phind.com/api/bing/search', json = { - 'q': prompt, + 'q' : prompt, 'userRankList': {}, 'browserLanguage': language}).json()['rawBingResults'] diff --git a/phind_test.py b/phind_test.py deleted file mode 100644 index e3148eb6..00000000 --- a/phind_test.py +++ /dev/null @@ -1,13 +0,0 @@ -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 diff --git a/testing/phind_test.py b/testing/phind_test.py new file mode 100644 index 00000000..e3148eb6 --- /dev/null +++ b/testing/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 -- cgit v1.2.3