1
0
Fork 0
GPT4FREE/testing/poe_test.py

14 lines
399 B
Python
Raw Normal View History

from time import sleep
2023-04-27 14:43:59 +00:00
import quora
token = quora.Account.create(proxy=None, logging=True)
print('token', token)
sleep(2)
2023-04-27 14:43:59 +00:00
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)