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:16 +0200
committerGitHub <noreply@github.com>2023-04-29 00:54:16 +0200
commitd304de513d76ee3fb3e2184d53a24ab8328f9925 (patch)
treed4c3960e576a05ddfb6c7d1da717ac5d456af227 /openaihosted/readme.md
parentMerge pull request #254 from 0dminnimda/don't-output-when-not-needed (diff)
parentupdate code, handle escape sequence and others (diff)
downloadgpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar.gz
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar.bz2
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar.lz
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar.xz
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.tar.zst
gpt4free-d304de513d76ee3fb3e2184d53a24ab8328f9925.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}")
```