mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
14 lines
342 B
Python
14 lines
342 B
Python
|
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)
|