From 5bbd0f5a6b270379a15b16cb6844638546123f71 Mon Sep 17 00:00:00 2001 From: ezerinz Date: Sun, 30 Apr 2023 14:26:56 +0800 Subject: ai.usesless.com --- unfinished/usesless/README.md | 24 ++++++++++ unfinished/usesless/__init__.py | 52 +++++++++++++++++++++ .../usesless/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1768 bytes 3 files changed, 76 insertions(+) create mode 100644 unfinished/usesless/README.md create mode 100644 unfinished/usesless/__init__.py create mode 100644 unfinished/usesless/__pycache__/__init__.cpython-310.pyc (limited to 'unfinished') diff --git a/unfinished/usesless/README.md b/unfinished/usesless/README.md new file mode 100644 index 00000000..4ff6d94b --- /dev/null +++ b/unfinished/usesless/README.md @@ -0,0 +1,24 @@ +ai.usesless.com + +to do: + +- use random user agent in header +- make the code better I guess (?) + +### Example: `usesless` + +```python +import usesless + +question1 = "Who won the world series in 2020?" +req = usesless.Completion.create(prompt=question1) +answer = req["text"] +message_id = req["parentMessageId"] + +question2 = "Where was it played?" +req2 = usesless.Completion.create(prompt=question2, parentMessageId=message_id) +answer2 = req2["text"] + +print(answer) +print(answer2) +``` diff --git a/unfinished/usesless/__init__.py b/unfinished/usesless/__init__.py new file mode 100644 index 00000000..28207aab --- /dev/null +++ b/unfinished/usesless/__init__.py @@ -0,0 +1,52 @@ +from curl_cffi.requests import headers +import requests +import json + + +class Completion: + headers = { + "authority": "ai.usesless.com", + "accept": "application/json, text/plain, */*", + "accept-language": "en-US,en;q=0.5", + "cache-control": "no-cache", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/112.0", + } + + @staticmethod + def create( + systemMessage: str = "You are a helpful assistant", + prompt: str = "", + parentMessageId: str = "", + presence_penalty: float = 1, + temperature: float = 1, + model: str = "gpt-3.5-turbo", + ): + json_data = { + "openaiKey": "", + "prompt": prompt, + "options": { + "parentMessageId": parentMessageId, + "systemMessage": systemMessage, + "completionParams": { + "presence_penalty": presence_penalty, + "temperature": temperature, + "model": model, + }, + }, + } + + url = "https://ai.usesless.com/api/chat-process" + request = requests.post(url, headers=Completion.headers, json=json_data) + content = request.content + response = Completion.__response_to_json(content) + return response + + @classmethod + def __response_to_json(cls, text) -> dict: + text = str(text.decode("utf-8")) + split_text = text.rsplit("\n", 1)[1] + to_json = json.loads(split_text) + return to_json diff --git a/unfinished/usesless/__pycache__/__init__.cpython-310.pyc b/unfinished/usesless/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 00000000..12d76fac Binary files /dev/null and b/unfinished/usesless/__pycache__/__init__.cpython-310.pyc differ -- cgit v1.2.3 From 76e15efe756d5c5eef506cd9452da03b2ef09c9e Mon Sep 17 00:00:00 2001 From: ezerinz Date: Sun, 30 Apr 2023 14:35:53 +0800 Subject: ai.usesless.com --- unfinished/usesless/__pycache__/__init__.cpython-310.pyc | Bin 1768 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 unfinished/usesless/__pycache__/__init__.cpython-310.pyc (limited to 'unfinished') diff --git a/unfinished/usesless/__pycache__/__init__.cpython-310.pyc b/unfinished/usesless/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 12d76fac..00000000 Binary files a/unfinished/usesless/__pycache__/__init__.cpython-310.pyc and /dev/null differ -- cgit v1.2.3 From 8a76728343f04caf73346f04a94ecfbee8f35faf Mon Sep 17 00:00:00 2001 From: ezerinz Date: Sun, 30 Apr 2023 14:58:46 +0800 Subject: delete module that is not accessed --- unfinished/usesless/__init__.py | 1 - 1 file changed, 1 deletion(-) (limited to 'unfinished') diff --git a/unfinished/usesless/__init__.py b/unfinished/usesless/__init__.py index 28207aab..6f9a47ef 100644 --- a/unfinished/usesless/__init__.py +++ b/unfinished/usesless/__init__.py @@ -1,4 +1,3 @@ -from curl_cffi.requests import headers import requests import json -- cgit v1.2.3 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