usesless test
This commit is contained in:
parent
be04fcd7f3
commit
0953981b53
1 changed files with 13 additions and 0 deletions
13
testing/usesless_test.py
Normal file
13
testing/usesless_test.py
Normal file
|
@ -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)
|
Loading…
Reference in a new issue