From 081dfff8b49d5487858611524babcecb8e473bd5 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Tue, 11 Apr 2023 17:44:29 +0100 Subject: quora (poe) [gpt-4/3.5] create bot feature added create bot feature quora.Model.create new model names: { 'sage' : 'capybara', 'gpt-4' : 'beaver', 'claude-v1.2' : 'a2_2', 'claude-instant-v1.0' : 'a2', 'gpt-3.5-turbo' : 'chinchilla' } --- testing/quora_test_2.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 testing/quora_test_2.py (limited to 'testing/quora_test_2.py') diff --git a/testing/quora_test_2.py b/testing/quora_test_2.py new file mode 100644 index 00000000..c51b8478 --- /dev/null +++ b/testing/quora_test_2.py @@ -0,0 +1,18 @@ +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 ...' +) + +print(model.name) + +for response in quora.StreamingCompletion.create( + custom_model = model.name, + prompt ='hello world', + token = token): + + print(response.completion.choices[0].text) \ No newline at end of file -- cgit v1.2.3