From 74f949e0993958af6789dadc346f98a0ac27e345 Mon Sep 17 00:00:00 2001 From: ezerinz Date: Sat, 20 May 2023 21:44:01 +0800 Subject: add aiassist.site test --- testing/aiassistest.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 testing/aiassistest.py (limited to 'testing') diff --git a/testing/aiassistest.py b/testing/aiassistest.py new file mode 100644 index 00000000..57a34f15 --- /dev/null +++ b/testing/aiassistest.py @@ -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) -- cgit v1.2.3