This commit is contained in:
t.me/xtekky
2023-04-17 08:33:06 +01:00
parent ab538ac3e0
commit 001768b77d

13
testing/poe_test.py Normal file
View File

@@ -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)