From 3b13c3df921379bd7ffd8f605c723e82ebf26a8f Mon Sep 17 00:00:00 2001 From: ezerinz Date: Sun, 30 Apr 2023 15:05:51 +0800 Subject: Update example --- unfinished/usesless/README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'unfinished') diff --git a/unfinished/usesless/README.md b/unfinished/usesless/README.md index 4ff6d94b..13e9df8c 100644 --- a/unfinished/usesless/README.md +++ b/unfinished/usesless/README.md @@ -10,15 +10,14 @@ to do: ```python import usesless -question1 = "Who won the world series in 2020?" -req = usesless.Completion.create(prompt=question1) -answer = req["text"] -message_id = req["parentMessageId"] +message_id = "" +while True: + prompt = input("Question: ") + if prompt == "!stop": + break -question2 = "Where was it played?" -req2 = usesless.Completion.create(prompt=question2, parentMessageId=message_id) -answer2 = req2["text"] + req = usesless.Completion.create(prompt=prompt, parentMessageId=message_id) -print(answer) -print(answer2) + print(f"Answer: {req['text']}") + message_id = req["id"] ``` -- cgit v1.2.3