summaryrefslogtreecommitdiffstats
path: root/you/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--you/README.md (renamed from openai_rev/you/README.md)8
1 files changed, 4 insertions, 4 deletions
diff --git a/openai_rev/you/README.md b/you/README.md
index f759c27c..25c20085 100644
--- a/openai_rev/you/README.md
+++ b/you/README.md
@@ -1,8 +1,7 @@
### Example: `you` (use like openai pypi package) <a name="example-you"></a>
```python
-
-from openai_rev import you
+import you
# simple request with links and details
response = you.Completion.create(
@@ -26,7 +25,8 @@ chat = []
while True:
prompt = input("You: ")
-
+ if prompt == 'q':
+ break
response = you.Completion.create(
prompt=prompt,
chat=chat)
@@ -34,4 +34,4 @@ while True:
print("Bot:", response["response"])
chat.append({"question": prompt, "answer": response["response"]})
-``` \ No newline at end of file
+```