summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorezerinz <edwinnnzx@gmail.com>2023-04-28 10:37:28 +0200
committerezerinz <edwinnnzx@gmail.com>2023-04-28 10:37:28 +0200
commit5b38bcf8e63431102467ed5477b6dfc052a7fa05 (patch)
tree7ddcb30190f3d8b9170e35e396c7af24f593a6d8
parentadd openaihosted testing (diff)
downloadgpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar.gz
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar.bz2
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar.lz
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar.xz
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.tar.zst
gpt4free-5b38bcf8e63431102467ed5477b6dfc052a7fa05.zip
-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}")
```