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