From cf9c1484494efefc77082cd4d31d086437678a2d Mon Sep 17 00:00:00 2001
From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com>
Date: Wed, 12 Apr 2023 10:48:03 +0100
Subject: _

---
 testing/you_test.py | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 testing/you_test.py

(limited to 'testing/you_test.py')

diff --git a/testing/you_test.py b/testing/you_test.py
new file mode 100644
index 00000000..62598e05
--- /dev/null
+++ b/testing/you_test.py
@@ -0,0 +1,32 @@
+import you
+
+# simple request with links and details
+response = you.Completion.create(
+    prompt       = "hello world",
+    detailed     = True,
+    includelinks = True,)
+
+print(response)
+
+# {
+#     "response": "...",
+#     "links": [...],
+#     "extra": {...},
+#         "slots": {...}
+#     }
+# }
+
+#chatbot
+
+chat = []
+
+while True:
+    prompt = input("You: ")
+    
+    response = you.Completion.create(
+        prompt  = prompt,
+        chat    = chat)
+    
+    print("Bot:", response["response"])
+    
+    chat.append({"question": prompt, "answer": response["response"]})
\ No newline at end of file
-- 
cgit v1.2.3