Skip to content

Commit

Permalink
play.vercel.ai
Browse files Browse the repository at this point in the history
  • Loading branch information
xtekky committed Apr 26, 2023
1 parent 0def873 commit d60d6fa
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion testing/phind_test.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
File renamed without changes.
29 changes: 29 additions & 0 deletions unfinished/vercelai/v2.py
Original file line number Diff line number Diff line change
@@ -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)
Empty file removed v2.py
Empty file.

0 comments on commit d60d6fa

Please sign in to comment.