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.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/testing/quora_test_2.py b/testing/quora_test_2.py
index c51b8478..d5316946 100644
--- a/testing/quora_test_2.py
+++ b/testing/quora_test_2.py
@@ -1,18 +1,17 @@
import quora
-token = quora.Account.create(logging = True, enable_bot_creation=True)
+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='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
+ custom_model=model.name,
+ prompt='hello world',
+ token=token):
+ print(response.completion.choices[0].text)