summaryrefslogtreecommitdiffstats
path: root/testing/usesless_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/usesless_test.py')
-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)