summaryrefslogtreecommitdiffstats
path: root/g4f/.v1/testing/quora_test_2.py
blob: 297ca7a1b6b13559cc3f7f19e9ae6899e723f49b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from gpt4free import quora

token = quora.Account.create(logging=True, enable_bot_creation=True)

model = quora.Model.create(
    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.text)