summaryrefslogtreecommitdiffstats
path: root/testing/quora_test_2.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/quora_test_2.py')
-rw-r--r--testing/quora_test_2.py18
1 files changed, 18 insertions, 0 deletions
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