summaryrefslogtreecommitdiffstats
path: root/testing/usesless_test.py
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-30 13:15:04 +0200
committerGitHub <noreply@github.com>2023-04-30 13:15:04 +0200
commitb8802544b9e9c866e241ea1aacff1023af0b7922 (patch)
tree18e813c22a92ab9d362383135f97c39204cf5eac /testing/usesless_test.py
parentUpdate docker-compose.yml (diff)
parentMerge pull request #303 from gran4/main (diff)
downloadgpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar.gz
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar.bz2
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar.lz
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar.xz
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.tar.zst
gpt4free-b8802544b9e9c866e241ea1aacff1023af0b7922.zip
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)