mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
081dfff8b4
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' }
18 lines
466 B
Python
18 lines
466 B
Python
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) |