summaryrefslogtreecommitdiffstats
path: root/unfinished/usesless/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'unfinished/usesless/README.md')
-rw-r--r--unfinished/usesless/README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/unfinished/usesless/README.md b/unfinished/usesless/README.md
new file mode 100644
index 00000000..13e9df8c
--- /dev/null
+++ b/unfinished/usesless/README.md
@@ -0,0 +1,23 @@
+ai.usesless.com
+
+to do:
+
+- use random user agent in header
+- make the code better I guess (?)
+
+### Example: `usesless` <a name="example-usesless"></a>
+
+```python
+import usesless
+
+message_id = ""
+while True:
+ prompt = input("Question: ")
+ if prompt == "!stop":
+ break
+
+ req = usesless.Completion.create(prompt=prompt, parentMessageId=message_id)
+
+ print(f"Answer: {req['text']}")
+ message_id = req["id"]
+```