diff options
author | ezerinz <edwinnnzx@gmail.com> | 2023-04-28 10:37:28 +0200 |
---|---|---|
committer | ezerinz <edwinnnzx@gmail.com> | 2023-04-28 10:37:28 +0200 |
commit | 5b38bcf8e63431102467ed5477b6dfc052a7fa05 (patch) | |
tree | 7ddcb30190f3d8b9170e35e396c7af24f593a6d8 /openaihosted/readme.md | |
parent | add openaihosted testing (diff) | |
download | gpt4free-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 |
Diffstat (limited to 'openaihosted/readme.md')
-rw-r--r-- | openaihosted/readme.md | 18 |
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}") ``` |