mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-15 06:13:01 +00:00
play.vercel.ai
This commit is contained in:
parent
0def87377b
commit
d60d6fa355
@ -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'
|
||||
|
29
unfinished/vercelai/v2.py
Normal file
29
unfinished/vercelai/v2.py
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user