diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-22 14:54:01 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-22 14:54:01 +0200 |
commit | 789b209d03ba45d4dbe9af924f5806abda371cd9 (patch) | |
tree | 2518e63234b6a437745070d90810098a96fca3e4 /t3nsor/README.md | |
parent | Merge branch 'main' of https://github.com/xtekky/gpt4free (diff) | |
download | gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.gz gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.bz2 gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.lz gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.xz gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.tar.zst gpt4free-789b209d03ba45d4dbe9af924f5806abda371cd9.zip |
Diffstat (limited to 't3nsor/README.md')
-rw-r--r-- | t3nsor/README.md | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/t3nsor/README.md b/t3nsor/README.md new file mode 100644 index 00000000..373a0d1a --- /dev/null +++ b/t3nsor/README.md @@ -0,0 +1,42 @@ +### Example: `t3nsor` (use like openai pypi package) <a name="example-t3nsor"></a> + +```python +# Import t3nsor +import t3nsor + +# t3nsor.Completion.create +# t3nsor.StreamCompletion.create + +[...] + +``` + +#### Example Chatbot +```python +messages = [] + +while True: + user = input('you: ') + + t3nsor_cmpl = t3nsor.Completion.create( + prompt = user, + messages = messages + ) + + print('gpt:', t3nsor_cmpl.completion.choices[0].text) + + messages.extend([ + {'role': 'user', 'content': user }, + {'role': 'assistant', 'content': t3nsor_cmpl.completion.choices[0].text} + ]) +``` + +#### Streaming Response: + +```python +for response in t3nsor.StreamCompletion.create( + prompt = 'write python code to reverse a string', + messages = []): + + print(response.completion.choices[0].text) +``` |