diff options
author | ezerinz <edwinnnzx@gmail.com> | 2023-04-30 08:26:02 +0200 |
---|---|---|
committer | ezerinz <edwinnnzx@gmail.com> | 2023-04-30 08:26:02 +0200 |
commit | 0953981b53fabd11bea74702696470bafcae20f4 (patch) | |
tree | b0bd876024be5e054aa8c8f6cf632ebb128c2552 /testing | |
parent | update code, handle escape sequence and others (diff) | |
download | gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar.gz gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar.bz2 gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar.lz gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar.xz gpt4free-0953981b53fabd11bea74702696470bafcae20f4.tar.zst gpt4free-0953981b53fabd11bea74702696470bafcae20f4.zip |
Diffstat (limited to '')
-rw-r--r-- | testing/usesless_test.py | 13 |
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) |