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