From d60d6fa355d89e60100676ca08cf63a77b443da1 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Wed, 26 Apr 2023 10:41:24 +0100 Subject: play.vercel.ai --- testing/phind_test.py | 2 +- testing/you_test.py | 32 ++++++++++++++++++++++++++++++++ unfinished/vercelai/v2.py | 29 +++++++++++++++++++++++++++++ v2.py | 0 you_test.py | 32 -------------------------------- 5 files changed, 62 insertions(+), 33 deletions(-) create mode 100644 testing/you_test.py create mode 100644 unfinished/vercelai/v2.py delete mode 100644 v2.py delete mode 100644 you_test.py diff --git a/testing/phind_test.py b/testing/phind_test.py index d72db090..2f2560a1 100644 --- a/testing/phind_test.py +++ b/testing/phind_test.py @@ -1,7 +1,7 @@ import phind # set cf_clearance cookie ( not needed at the moment) -phind.cf_clearance = '' +phind.cf_clearance = 'MDzwnr3ZWk_ap8u.iwwMR5F3WccfOkhUy_zGNDpcF3s-1682497341-0-160' phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' prompt = 'hello world' diff --git a/testing/you_test.py b/testing/you_test.py new file mode 100644 index 00000000..9c69cf34 --- /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 diff --git a/unfinished/vercelai/v2.py b/unfinished/vercelai/v2.py new file mode 100644 index 00000000..d1a4ad05 --- /dev/null +++ b/unfinished/vercelai/v2.py @@ -0,0 +1,29 @@ +import requests + + +token = requests.get('https://play.vercel.ai/openai.jpeg', headers={ + 'authority': 'play.vercel.ai', + 'accept-language': 'en,fr-FR;q=0.9,fr;q=0.8,es-ES;q=0.7,es;q=0.6,en-US;q=0.5,am;q=0.4,de;q=0.3', + 'referer': 'https://play.vercel.ai/', + 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'}).text + '.' + +headers = { + 'authority': 'play.vercel.ai', + 'custom-encoding': token, + 'origin': 'https://play.vercel.ai', + 'referer': 'https://play.vercel.ai/', + 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' +} + +for chunk in requests.post('https://play.vercel.ai/api/generate', headers=headers, stream = True, json = { + 'prompt': 'hi', + 'model': 'openai:gpt-3.5-turbo', + 'temperature': 0.7, + 'maxTokens': 200, + 'topK': 1, + 'topP': 1, + 'frequencyPenalty': 1, + 'presencePenalty': 1, + 'stopSequences': []}).iter_lines(): + + print(chunk) \ No newline at end of file diff --git a/v2.py b/v2.py deleted file mode 100644 index e69de29b..00000000 diff --git a/you_test.py b/you_test.py deleted file mode 100644 index 9c69cf34..00000000 --- a/you_test.py +++ /dev/null @@ -1,32 +0,0 @@ -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