diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-17 01:07:26 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-17 01:07:26 +0200 |
commit | cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b (patch) | |
tree | 690889126820ea1b7db68d2c50791fe83a07d618 /poe_test.py | |
parent | add copyright notice (diff) | |
download | gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar.gz gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar.bz2 gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar.lz gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar.xz gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.tar.zst gpt4free-cad2b5a9da84ccb3cd0902909d1c43b821bbfa0b.zip |
Diffstat (limited to 'poe_test.py')
-rw-r--r-- | poe_test.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/poe_test.py b/poe_test.py new file mode 100644 index 00000000..122f19c7 --- /dev/null +++ b/poe_test.py @@ -0,0 +1,13 @@ +import quora +from time import sleep + +token = quora.Account.create(proxy = None,logging = True) +print('token', token) + +sleep(2) + +for response in quora.StreamingCompletion.create(model = 'gpt-3.5-turbo', + prompt = 'hello world', + token = token): + + print(response.completion.choices[0].text, end="", flush=True)
\ No newline at end of file |