summaryrefslogtreecommitdiffstats
path: root/testing/poe_test.py
blob: 5cab067c7f9ad105d7cf8087b041cf0b9145f6bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from time import sleep

import quora

token = quora.Account.create(proxy=None, logging=True)
print('token', token)

sleep(2)

for response in quora.StreamingCompletion.create(model='ChatGPT', prompt='hello world', token=token):
    print(response.text, flush=True)