From 920fe19608ba06ed8c2b4c9a23944af35cf24e56 Mon Sep 17 00:00:00 2001 From: Raju Komati Date: Fri, 28 Apr 2023 00:40:43 +0530 Subject: added main module for accessing all services --- testing/poe_test.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'testing/poe_test.py') diff --git a/testing/poe_test.py b/testing/poe_test.py index 8d527879..5cab067c 100644 --- a/testing/poe_test.py +++ b/testing/poe_test.py @@ -7,7 +7,5 @@ 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) +for response in quora.StreamingCompletion.create(model='ChatGPT', prompt='hello world', token=token): + print(response.text, flush=True) -- cgit v1.2.3 From b206a1eb6364e519741ceb89e3f3b63910b4e1ef Mon Sep 17 00:00:00 2001 From: Raju Komati Date: Fri, 28 Apr 2023 02:27:06 +0530 Subject: update openai_rev module add test file with simple use --- testing/poe_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/poe_test.py') diff --git a/testing/poe_test.py b/testing/poe_test.py index 5cab067c..809804f2 100644 --- a/testing/poe_test.py +++ b/testing/poe_test.py @@ -1,6 +1,6 @@ from time import sleep -import quora +from openai_rev import quora token = quora.Account.create(proxy=None, logging=True) print('token', token) -- cgit v1.2.3