diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-06 21:24:04 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-06 21:24:04 +0200 |
commit | 76571f25911657180ee17eed7b302a363e7562fc (patch) | |
tree | f3c1a8eae0839f0b55e741622004a469baff76c7 /testing | |
parent | important note (diff) | |
download | gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.gz gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.bz2 gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.lz gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.xz gpt4free-76571f25911657180ee17eed7b302a363e7562fc.tar.zst gpt4free-76571f25911657180ee17eed7b302a363e7562fc.zip |
Diffstat (limited to 'testing')
-rw-r--r-- | testing/poe_test.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/poe_test.py b/testing/poe_test.py new file mode 100644 index 00000000..99c3bea4 --- /dev/null +++ b/testing/poe_test.py @@ -0,0 +1,13 @@ +import poe +from time import sleep + +token = poe.Account.create(proxy = 'xtekky:ogingoi2n3g@geo.iproyal.com:12321',logging = True) +print('token', token) + +sleep(2) + +for response in poe.StreamingCompletion.create(model = 'gpt-4', + prompt = 'hello world', + token = token): + + print(response.completion.choices[0].text, end="", flush=True)
\ No newline at end of file |