updated poe api (gpt4)

fixed tls_client issue by switching to request Session, and update the poe api
This commit is contained in:
t.me/xtekky
2023-04-06 21:24:04 +02:00
parent 24f10a3f8f
commit 76571f2591
6 changed files with 245 additions and 40 deletions

13
testing/poe_test.py Normal file
View File

@@ -0,0 +1,13 @@
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)