From 053719847dc80a37007406c69bf7979c4ae697db Mon Sep 17 00:00:00 2001 From: Sife-shuo <88375951+Sife-shuo@users.noreply.github.com> Date: Fri, 19 May 2023 23:01:57 +0800 Subject: upload italtgpt2 --- testing/italygpt2_test.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 testing/italygpt2_test.py (limited to 'testing') diff --git a/testing/italygpt2_test.py b/testing/italygpt2_test.py new file mode 100644 index 00000000..0494c8a2 --- /dev/null +++ b/testing/italygpt2_test.py @@ -0,0 +1,4 @@ +from gpt4free import italygpt2 +account_data=italygpt2.Account.create() +for chunk in italygpt2.Completion.create(account_data=account_data,prompt="Who are you?"): + print(chunk, end="", flush=True) \ No newline at end of file -- cgit v1.2.3 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