diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-30 00:48:53 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-30 00:48:53 +0200 |
commit | d6819fd6316453f8e09cdca19dbf03f30b6e8a92 (patch) | |
tree | 9aabe9946230b96e6a2468f3aeb135d409c8fe51 /unfinished/writesonic/README.md | |
parent | Merge branch 'main' of https://github.com/xtekky/gpt4free (diff) | |
download | gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar.gz gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar.bz2 gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar.lz gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar.xz gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.tar.zst gpt4free-d6819fd6316453f8e09cdca19dbf03f30b6e8a92.zip |
Diffstat (limited to 'unfinished/writesonic/README.md')
-rw-r--r-- | unfinished/writesonic/README.md | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/unfinished/writesonic/README.md b/unfinished/writesonic/README.md deleted file mode 100644 index a658a87c..00000000 --- a/unfinished/writesonic/README.md +++ /dev/null @@ -1,53 +0,0 @@ -### Example: `writesonic` (use like openai pypi package) <a name="example-writesonic"></a> - -```python -# import writesonic -import writesonic - -# create account (3-4s) -account = writesonic.Account.create(logging = True) - -# with loging: - # 2023-04-06 21:50:25 INFO __main__ -> register success : '{"id":"51aa0809-3053-44f7-922a...' (2s) - # 2023-04-06 21:50:25 INFO __main__ -> id : '51aa0809-3053-44f7-922a-2b85d8d07edf' - # 2023-04-06 21:50:25 INFO __main__ -> token : 'eyJhbGciOiJIUzI1NiIsInR5cCI6Ik...' - # 2023-04-06 21:50:28 INFO __main__ -> got key : '194158c4-d249-4be0-82c6-5049e869533c' (2s) - -# simple completion -response = writesonic.Completion.create( - api_key = account.key, - prompt = 'hello world' -) - -print(response.completion.choices[0].text) # Hello! How may I assist you today? - -# conversation - -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) # Your name is Tekky. - -# enable internet - -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) # Argentina won the 2022 FIFA World Cup tournament held in Qatar ... -```
\ No newline at end of file |