mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
13 lines
323 B
Python
13 lines
323 B
Python
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) |