|
|
|
import writesonic |
|
|
|
|
|
account = writesonic.Account.create(logging=True) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
response = writesonic.Completion.create(api_key=account.key, prompt='hello world') |
|
|
|
print(response.completion.choices[0].text) |
|
|
|
|
|
|
|
response = writesonic.Completion.create( |
|
api_key=account.key, |
|
prompt='what is my name ?', |
|
enable_memory=True, |
|
history_data=[{'is_sent': True, 'message': 'my name is Tekky'}, {'is_sent': False, 'message': 'hello Tekky'}], |
|
) |
|
|
|
print(response.completion.choices[0].text) |
|
|
|
|
|
|
|
response = writesonic.Completion.create( |
|
api_key=account.key, prompt='who won the quatar world cup ?', enable_google_results=True |
|
) |
|
|
|
print(response.completion.choices[0].text) |
|
|