summaryrefslogtreecommitdiffstats
path: root/testing/quora_test_2.py
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-29 01:05:50 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-29 01:05:50 +0200
commit698b8fddde006524e40143659f3ebd4a08082b2b (patch)
treeab94673004d260bcc671488097624499409127f3 /testing/quora_test_2.py
parent. (diff)
parentMerge pull request #221 from repollo/STREAMLIT_CHAT_IMPLEMENTATION (diff)
downloadgpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar.gz
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar.bz2
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar.lz
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar.xz
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.tar.zst
gpt4free-698b8fddde006524e40143659f3ebd4a08082b2b.zip
Diffstat (limited to 'testing/quora_test_2.py')
-rw-r--r--testing/quora_test_2.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/testing/quora_test_2.py b/testing/quora_test_2.py
index d5316946..5d06f9ed 100644
--- a/testing/quora_test_2.py
+++ b/testing/quora_test_2.py
@@ -1,17 +1,12 @@
-import quora
+from openai_rev import quora
token = quora.Account.create(logging=True, enable_bot_creation=True)
model = quora.Model.create(
- token=token,
- model='gpt-3.5-turbo', # or claude-instant-v1.0
- system_prompt='you are ChatGPT a large language model ...'
+ token=token, model='ChatGPT', system_prompt='you are ChatGPT a large language model ...' # or claude-instant-v1.0
)
print(model.name)
-for response in quora.StreamingCompletion.create(
- custom_model=model.name,
- prompt='hello world',
- token=token):
- print(response.completion.choices[0].text)
+for response in quora.StreamingCompletion.create(custom_model=model.name, prompt='hello world', token=token):
+ print(response.text)