File size: 2,077 Bytes
0c4cce1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
import sys
import json
import datetime
import urllib.parse
from curl_cffi import requests
config = json.loads(sys.argv[1])
prompt = config['messages'][-1]['content']
skill = 'expert' if config['model'] == 'gpt-4' else 'intermediate'
json_data = json.dumps({
'question': prompt,
'options': {
'skill': skill,
'date': datetime.datetime.now().strftime('%d/%m/%Y'),
'language': 'en',
'detailed': True,
'creative': True,
'customLinks': []}}, separators=(',', ':'))
headers = {
'Content-Type': 'application/json',
'Pragma': 'no-cache',
'Accept': '*/*',
'Sec-Fetch-Site': 'same-origin',
'Accept-Language': 'en-GB,en;q=0.9',
'Cache-Control': 'no-cache',
'Sec-Fetch-Mode': 'cors',
'Content-Length': str(len(json_data)),
'Origin': 'https://www.phind.com',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15',
'Referer': f'https://www.phind.com/search?q={urllib.parse.quote(prompt)}&source=searchbox',
'Connection': 'keep-alive',
'Host': 'www.phind.com',
'Sec-Fetch-Dest': 'empty'
}
def output(chunk):
try:
if b'PHIND_METADATA' in chunk:
return
if chunk == b'data: \r\ndata: \r\ndata: \r\n\r\n':
chunk = b'data: \n\r\n\r\n'
chunk = chunk.decode()
chunk = chunk.replace('data: \r\n\r\ndata: ', 'data: \n')
chunk = chunk.replace('\r\ndata: \r\ndata: \r\n\r\n', '\n\r\n\r\n')
chunk = chunk.replace('data: ', '').replace('\r\n\r\n', '')
print(chunk, flush=True, end = '')
except json.decoder.JSONDecodeError:
pass
while True:
try:
response = requests.post('https://www.phind.com/api/infer/answer',
headers=headers, data=json_data, content_callback=output, timeout=999999, impersonate='safari15_5')
exit(0)
except Exception as e:
print('an error occured, retrying... |', e, flush=True)
continue |