testing
This commit is contained in:
13
testing/poe_test.py
Normal file
13
testing/poe_test.py
Normal 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)
|
||||
Reference in New Issue
Block a user