summaryrefslogtreecommitdiffstats
path: root/openaihosted/readme.md
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-29 00:54:36 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-29 00:54:36 +0200
commit5c2896ed5e8ea8993aa69804b864d7c2e13b8a44 (patch)
tree83930d7f7e091cf587ce43549e2e211662526e8c /openaihosted/readme.md
parent_ (diff)
parentMerge pull request #242 from ezerinz/main (diff)
downloadgpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar.gz
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar.bz2
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar.lz
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar.xz
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.tar.zst
gpt4free-5c2896ed5e8ea8993aa69804b864d7c2e13b8a44.zip
Diffstat (limited to 'openaihosted/readme.md')
-rw-r--r--openaihosted/readme.md18
1 files changed, 13 insertions, 5 deletions
diff --git a/openaihosted/readme.md b/openaihosted/readme.md
index acd60bab..7b8ced56 100644
--- a/openaihosted/readme.md
+++ b/openaihosted/readme.md
@@ -1,10 +1,18 @@
-### Example: `openaihosted`) <a name="example-openaihosted"></a>
-
+### Example: `openaihosted` (use like openai pypi package) <a name="example-openaihosted"></a>
```python
-# import library
import openaihosted
-res = openaihosted.Completion.create(systemprompt="U are ChatGPT", text="What is 4+4", assistantprompt="U are a helpful assistant.")['response']
-print(res) ## Responds with the answer
+messages = [{"role": "system", "content": "You are a helpful assistant."}]
+while True:
+ question = input("Question: ")
+ if question == "!stop":
+ break
+
+ messages.append({"role": "user", "content": question})
+ request = openaihosted.Completion.create(messages=messages)
+
+ response = request["responses"]
+ messages.append({"role": "assistant", "content": response})
+ print(f"Answer: {response}")
```