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/test_main.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 testing/test_main.py (limited to 'testing/test_main.py') diff --git a/testing/test_main.py b/testing/test_main.py new file mode 100644 index 00000000..956c004b --- /dev/null +++ b/testing/test_main.py @@ -0,0 +1,21 @@ +from openai_rev import openai_rev, Provider, quora, forefront + +# usage You +response = openai_rev.Completion.create(Provider.You, prompt='Write a poem on Lionel Messi') +print(response) +print(f'END') +# usage Poe +# token = quora.Account.create(logging=False) +token = 'GKzCahZYGKhp76LfE197xw==' +response = openai_rev.Completion.create( + Provider.Poe, prompt='Write a poem on Lionel Messi', token=token, model='ChatGPT' +) +print(response) +print(f'END') + +# usage forefront +token = forefront.Account.create(logging=False) +response = openai_rev.Completion.create( + Provider.ForeFront, prompt='Write a poem on Lionel Messi', model='gpt-4', token=token +) +print(response) -- cgit v1.2.3