1
0
Fork 0
GPT4FREE/testing/poe_test.py
t.me/xtekky 76571f2591 updated poe api (gpt4)
fixed tls_client issue by switching to request Session, and update the poe api
2023-04-06 21:24:04 +02:00

13 lines
347 B
Python

import poe
from time import sleep
token = poe.Account.create(proxy = 'xtekky:ogingoi2n3g@geo.iproyal.com:12321',logging = True)
print('token', token)
sleep(2)
for response in poe.StreamingCompletion.create(model = 'gpt-4',
prompt = 'hello world',
token = token):
print(response.completion.choices[0].text, end="", flush=True)