add aiassist.site test

pull/578/head
ezerinz 1 year ago
parent 7fbe472b74
commit 74f949e099
No known key found for this signature in database
GPG Key ID: 8713BDED6DE33C4D

@ -0,0 +1,13 @@
import aiassist
question1 = "Who won the world series in 2020?"
req = aiassist.Completion.create(prompt=question1)
answer = req["text"]
message_id = req["parentMessageId"]
question2 = "Where was it played?"
req2 = aiassist.Completion.create(prompt=question2, parentMessageId=message_id)
answer2 = req2["text"]
print(answer)
print(answer2)
Loading…
Cancel
Save