summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-30 13:12:40 +0200
committerGitHub <noreply@github.com>2023-04-30 13:12:40 +0200
commit2af20fd6bf9bf0d9e4282ea0b0571b59d351a367 (patch)
tree7bd2489db29fdd1b2afa005d455c7c96db99b3eb /testing
parentMerge branch 'main' of https://github.com/xtekky/gpt4free (diff)
parentUpdate example (diff)
downloadgpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar.gz
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar.bz2
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar.lz
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar.xz
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.tar.zst
gpt4free-2af20fd6bf9bf0d9e4282ea0b0571b59d351a367.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)