You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: quora (poe) (use like openai pypi package) - GPT-4
# quora model names: (use left key as argument)models= {
'sage' : 'capybara',
'gpt-4' : 'beaver',
'claude-v1.2' : 'a2_2',
'claude-instant-v1.0' : 'a2',
'gpt-3.5-turbo' : 'chinchilla'
}
!! new: bot creation
# import quora (poe) packageimportquora# create account# make sure to set enable_bot_creation to Truetoken=quora.Account.create(logging=True, enable_bot_creation=True)
model=quora.Model.create(
token=token,
model='gpt-3.5-turbo', # or claude-instant-v1.0system_prompt='you are ChatGPT a large language model ...'
)
print(model.name) # gptx....# streaming responseforresponseinquora.StreamingCompletion.create(
custom_model=model.name,
prompt='hello world',
token=token):
print(response.completion.choices[0].text)