File size: 7,103 Bytes
23e2cea cbab9b7 23e2cea | 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | from flask import Flask, Response, request
import requests
import uuid
from datetime import datetime
import json
from flask_cors import CORS
import re
proxy = None
# 例: proxy = 'a:a@proxy.socks5.io:3005'
if proxy:
proxies = {'http':proxy,'https':proxy}
else:
proxies = None
models = ['gpt_4', 'gpt_4_turbo', 'claude_2', 'claude_3_opus', 'claude_3_sonnet', 'claude_3_haiku', 'gemini_pro', 'gemini_1_5_pro', 'databricks_dbrx_instruct', 'command_r', 'command_r_plus', 'zephyr']
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/59.0.865.0 Safari/534.2',
'Accept': 'text/event-stream',
'Referer': 'https://you.com/',
}
app = Flask(__name__)
CORS(app)
def get_ck_parms(session, session_jwt, chat, chatid, model):
cookies = {
'youpro_subscription': 'true',
'stytch_session': session,
'stytch_session_jwt': session_jwt,
'ydc_stytch_session': session,
'ydc_stytch_session_jwt': session_jwt,
}
params = {
'q':chat,
'page':1,
'count':10,
'safeSearch':'Off',
'responseFilter':'WebPages,TimeZone,Computation,RelatedSearches',
'domain':'youchat',
'use_personalization_extraction':'true',
'queryTraceId':chatid,
'chatId':chatid,
'conversationTurnId':uuid.uuid4(),
'pastChatLength':0,
'isSmallMediumDevice':'true',
'selectedChatMode':'custom',
'selectedAIModel':model,
'traceId':f'{chatid}|{uuid.uuid4()}|{datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%fZ")}'
}
return cookies,params
def parse_1(data):
messages = data['messages']
model = data['model']
try:
_stream = data['stream']
except:
_stream = False
if '使用四到五个字直接返回这句话的简要主题,不要解释、不要标点、不要语气词、不要多余文本,不要加粗,如果没有主题,请直接返回“闲聊”' in str(messages):
model = 'gpt_4_turbo'
if model == 'gem_pro':
model = 'gemini_pro'
elif model == 'gem_1_5_pro':
model = 'gemini_1_5_pro'
elif model not in models:
model = 'gpt_4_turbo'
if model == 'command_r' or model == 'zephyr' or model == 'claude_2':
add_t = "This is the api format of our previous conversation, please understand and reply to the user's last question"
messages = add_t + str(messages)
elif model == 'databricks_dbrx_instruct' or model == 'gemini_pro'or model == 'gemini_1_5_pro':
for item in reversed(messages):
if item['role'] == 'user':
messages = item['content']
break
return str(messages),model,_stream
def chat_liu(chat, model, session, session_jwt):
chatid = uuid.uuid4()
cookies,params = get_ck_parms(session, session_jwt, chat, chatid, model)
response = requests.get(
'https://you.com/api/streamingSearch',
cookies=cookies,
headers=headers,
params=params,
stream=True,
proxies=proxies
)
if response.status_code == 200:
for line in response.iter_lines():
if line:
data = line.decode('utf-8')
if 'event' in data:
continue
else:
data = data[6:]
if 'youChatToken' in data:
id = str(uuid.uuid4())
content = json.loads(data)['youChatToken']
if 'Please log in to access GPT-4 mode.' in content and 'Answering your question without GPT-4 mode:' in content:
content = 'cookie失效或会员到期,将默认使用智障模型!\n\n'
yield "data: {}\n\n".format(json.dumps({
"id": "chatcmpl-"+id,
"created": 0,
"model": model,
"choices": [{
"index": 0,
"delta": {
"content": content,
}
}]
}))
yield bytes(f"data: {['DONE']}", 'utf-8')
yield bytes()
else:
if response.status_code == 403 and 'Just a moment...' in response.text:
print('盾')
return response.status_code
def chat_feiliu(chat, model, session, session_jwt):
chatid = uuid.uuid4()
cookies,params = get_ck_parms(session, session_jwt, chat, chatid, model)
response = requests.get(
'https://you.com/api/streamingSearch',
cookies=cookies,
headers=headers,
params=params,
stream=True,
proxies=proxies
)
chat_text = ''
if response.status_code == 200:
for line in response.iter_lines():
if line:
data = line.decode('utf-8')
if 'event' in data:
continue
else:
data = data[6:]
if 'youChatToken' in data:
id = str(uuid.uuid4())
content = json.loads(data)['youChatToken']
if 'Please log in to access GPT-4 mode.' in content and 'Answering your question without GPT-4 mode:' in content:
content = 'cookie失效或会员到期,将默认使用智障模型!\n\n'
chat_text = chat_text + content
else:
return {"error": f'返回错误|{str(response.status_code)}'}, response.status_code
return {"id":f"chatcmpl-{str(uuid.uuid4())}",
"OAI-Device-Id":str(uuid.uuid4()),
"conversation_id":str(uuid.uuid4()),
"created":123,
"model":"gpt-3.5-turbo",
"choices":[{"index":0,"message":{"role":"assistant","content":chat_text},"finish_reason":"stop"}],
"usage":{"prompt_tokens":0,"completion_tokens":0,"total_tokens":0}}
return chat_text
@app.route('/')
def stream():
return 'ok'
@app.route('/yyds/v1/chat/completions', methods=['POST', 'OPTIONS'])
def chatv1_1():
if request.method == 'OPTIONS':
return '', 204
try:
try:
session_jwt = re.search(r'ydc_stytch_session_jwt=([^;]+)', request.headers.get('Authorization')).group(1)
session = re.search(r'ydc_stytch_session=([^;]+)', request.headers.get('Authorization')).group(1)
except:
return {"error": "请确保传入的Authorization正确"}, 401
try:
messages,model,_stream = parse_1(request.get_json())
except Exception as e:
print(e)
return {"error": "Invalid JSON body1"}, 404
if _stream == True:
return Response(chat_liu(str(messages), model, session, session_jwt), mimetype='text/event-stream')
else:
return chat_feiliu(messages, model, session, session_jwt)
except Exception as e:
print('error')
print(e)
return {"error": "Invalid JSON body"}, 404
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=7860)
|