summaryrefslogtreecommitdiffstats
path: root/g4f/.v1/testing/you_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/.v1/testing/you_test.py')
-rw-r--r--g4f/.v1/testing/you_test.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/g4f/.v1/testing/you_test.py b/g4f/.v1/testing/you_test.py
new file mode 100644
index 00000000..1e9f6205
--- /dev/null
+++ b/g4f/.v1/testing/you_test.py
@@ -0,0 +1,27 @@
+from gpt4free import you
+
+# simple request with links and details
+response = you.Completion.create(prompt="hello world", detailed=True, include_links=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.text)
+
+ chat.append({"question": prompt, "answer": response.text})