diff options
Diffstat (limited to '')
-rw-r--r-- | testing/theb_test.py (renamed from test.py) | 0 | ||||
-rw-r--r-- | testing/useless_test.py | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/test.py b/testing/theb_test.py index 0fd2ec8b..0fd2ec8b 100644 --- a/test.py +++ b/testing/theb_test.py diff --git a/testing/useless_test.py b/testing/useless_test.py new file mode 100644 index 00000000..9b613aac --- /dev/null +++ b/testing/useless_test.py @@ -0,0 +1,27 @@ +from gpt4free import usesless + +message_id = "" +while True: + prompt = input("Question: ") + if prompt == "!stop": + break + + req = usesless.Completion.create(prompt=prompt, parentMessageId=message_id) + + print(f"Answer: {req['text']}") + message_id = req["id"] + + +import gpt4free + +message_id = "" +while True: + prompt = input("Question: ") + if prompt == "!stop": + break + + req = gpt4free.Completion.create(provider = gpt4free.Provider.UseLess, + prompt=prompt, parentMessageId=message_id) + + print(f"Answer: {req['text']}") + message_id = req["id"]
\ No newline at end of file |