summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/phind_test.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/phind_test.py b/testing/phind_test.py
deleted file mode 100644
index e3148eb6..00000000
--- a/testing/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