mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
13 lines
402 B
Python
13 lines
402 B
Python
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)
|