summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-30 13:13:56 +0200
committerGitHub <noreply@github.com>2023-04-30 13:13:56 +0200
commitef9127d876914813868536597926e2a7dd37bbf7 (patch)
tree2dc9e9cf81b78af88f7279146578856ec8af0768 /testing
parentfixed: bug fix on GUI (diff)
parentMerge pull request #304 from taiyi747/main (diff)
downloadgpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar.gz
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar.bz2
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar.lz
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar.xz
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.tar.zst
gpt4free-ef9127d876914813868536597926e2a7dd37bbf7.zip
Diffstat (limited to 'testing')
-rw-r--r--testing/usesless_test.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/usesless_test.py b/testing/usesless_test.py
new file mode 100644
index 00000000..e2e35547
--- /dev/null
+++ b/testing/usesless_test.py
@@ -0,0 +1,13 @@
+import usesless
+
+question1 = "Who won the world series in 2020?"
+req = usesless.Completion.create(prompt=question1)
+answer = req["text"]
+message_id = req["parentMessageId"]
+
+question2 = "Where was it played?"
+req2 = usesless.Completion.create(prompt=question2, parentMessageId=message_id)
+answer2 = req2["text"]
+
+print(answer)
+print(answer2)