diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/theb_test.py | 5 | ||||
-rw-r--r-- | testing/useless_test.py | 27 |
2 files changed, 32 insertions, 0 deletions
diff --git a/testing/theb_test.py b/testing/theb_test.py new file mode 100644 index 00000000..0fd2ec8b --- /dev/null +++ b/testing/theb_test.py @@ -0,0 +1,5 @@ +from gpt4free import theb + +for token in theb.Completion.create('hello world'): + print(token, end='', flush=True) + print('asdsos')
\ No newline at end of file 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 |