forked from easychen/openai-api-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
287 lines (260 loc) · 8.99 KB
/
app.js
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
const express = require('express')
const fetch = require('cross-fetch')
const app = express()
var multer = require('multer');
var forms = multer({limits: { fieldSize: 10*1024*1024 }});
app.use(forms.array());
const cors = require('cors');
app.use(cors());
const bodyParser = require('body-parser')
app.use(bodyParser.json({limit : '50mb' }));
app.use(bodyParser.urlencoded({ extended: true }));
const tencentcloud = require("tencentcloud-sdk-nodejs");
const TmsClient = tencentcloud.tms.v20201229.Client;
const clientConfig = {
credential: {
secretId: process.env.TENCENT_CLOUD_SID,
secretKey: process.env.TENCENT_CLOUD_SKEY,
},
region: process.env.TENCENT_CLOUD_AP||"ap-singapore",
profile: {
httpProfile: {
endpoint: "tms.tencentcloudapi.com",
},
},
};
const mdClient = process.env.TENCENT_CLOUD_SID && process.env.TENCENT_CLOUD_SKEY ? new TmsClient(clientConfig) : false;
const controller = new AbortController();
app.all(`*`, async (req, res) => {
const url = `https://api.openai.com${req.url}`;
// 从 header 中取得 Authorization': 'Bearer 后的 token
const token = req.headers.authorization?.split(' ')[1];
if( !token ) return res.status(403).send('Forbidden');
const openai_key = token.split(':')[0];
if( !openai_key ) return res.status(403).send('Forbidden');
const proxy_key = token.split(':')[1]||"";
if( process.env.PROXY_KEY && proxy_key !== process.env.PROXY_KEY )
return res.status(403).send('Forbidden');
// console.log( req );
const { moderation, moderation_level, ...restBody } = req.body;
let sentence = "";
// 建立一个句子缓冲区
let sentence_buffer = [];
let processing = false;
let processing_stop = false;
async function process_buffer(res)
{
if( processing_stop )
{
console.log("processing_stop",processing_stop);
return false;
}
console.log("句子缓冲区" + new Date(), sentence_buffer);
// 处理句子缓冲区
if( processing )
{
// 有正在处理的,1秒钟后重试
console.log("有正在处理的,1秒钟后重试");
setTimeout( () => process_buffer(res), 1000 );
return false;
}
processing = true;
const sentence = sentence_buffer.shift();
console.log("取出句子", sentence);
if( sentence )
{
if( sentence === '[DONE]' )
{
console.log("[DONE]", "结束输出");
res.write("data: "+sentence+"\n\n" );
processing = false;
res.end();
return true;
}else
{
// 开始对句子进行审核
let data_array = JSON.parse(sentence);
console.log("解析句子数据为array",data_array);
const sentence_content = data_array.choices[0]?.delta?.content;
console.log("sentence_content", sentence_content);
if( sentence_content )
{
const params = {"Content": Buffer.from(sentence_content).toString('base64')};
const md_result = await mdClient.TextModeration(params);
// console.log("审核结果", md_result);
let md_check = moderation_level == 'high' ? md_result.Suggestion != 'Pass' : md_result.Suggestion == 'Block';
if( md_check )
{
// 终止输出
console.log("审核不通过", sentence_content, md_result);
let forbidden_array = data_array;
forbidden_array.choices[0].delta.content = "这个话题不适合讨论,换个话题吧。";
res.write("data: "+JSON.stringify(forbidden_array)+"\n\n" );
res.write("data: [DONE]\n\n" );
res.end();
controller.abort();
processing = false;
processing_stop = true;
return false;
}else
{
console.log("审核通过", sentence_content);
res.write("data: "+sentence+"\n\n" );
processing = false;
console.log("processing",processing);
return true;
}
}
}
}else
{
// console.log("句子缓冲区为空");
}
processing = false;
}
const options = {
method: req.method,
timeout: process.env.TIMEOUT||30000,
signal: controller.signal,
headers: {
'Content-Type': 'application/json; charset=utf-8',
'Authorization': 'Bearer '+ openai_key,
},
onMessage: async (data) => {
// console.log(data);
if( data === '[DONE]' )
{
sentence_buffer.push(data);
await process_buffer(res);
}else
{
if( moderation && mdClient )
{
try {
let data_array = JSON.parse(data);
const char = data_array.choices[0]?.delta?.content;
if( char ) sentence += char;
// console.log("sentence",sentence );
if( char == '。' || char == '?' || char == '!' || char == "\n" )
{
// 将 sentence 送审
console.log("遇到句号,将句子放入缓冲区", sentence);
data_array.choices[0].delta.content = sentence;
sentence = "";
sentence_buffer.push(JSON.stringify(data_array));
await process_buffer(res);
}
} catch (error) {
// 因为开头已经处理的了 [DONE] 的情况,这里应该不会出现无法解析json的情况
console.log( "error", error );
}
}else
{
// 如果没有文本审核参数或者设置,直接输出
res.write("data: "+data+"\n\n" );
}
}
}
};
if( req.method.toLocaleLowerCase() === 'post' && req.body ) options.body = JSON.stringify(restBody);
// console.log({url, options});
try {
// 如果是 chat completion 和 text completion,使用 SSE
if( (req.url.startsWith('/v1/completions') || req.url.startsWith('/v1/chat/completions')) && req.body.stream ) {
console.log("使用 SSE");
const response = await myFetch(url, options);
if( response.ok )
{
// write header
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
});
const { createParser } = await import("eventsource-parser");
const parser = createParser((event) => {
// console.log(event);
if (event.type === "event") {
options.onMessage(event.data);
}
});
if (!response.body.getReader) {
const body = response.body;
if (!body.on || !body.read) {
throw new error('unsupported "fetch" implementation');
}
body.on("readable", () => {
let chunk;
while (null !== (chunk = body.read())) {
// console.log(chunk.toString());
parser.feed(chunk.toString());
}
});
} else {
for await (const chunk of streamAsyncIterable(response.body)) {
const str = new TextDecoder().decode(chunk);
parser.feed(str);
}
}
}
}else
{
console.log("使用 fetch");
const response = await myFetch(url, options);
// console.log(response);
const data = await response.json();
// 审核结果
if( moderation && mdClient )
{
const params = {"Content": Buffer.from(data.choices[0].message.content).toString('base64')};
const md_result = await mdClient.TextModeration(params);
// console.log("审核结果", md_result);
let md_check = moderation_level == 'high' ? md_result.Suggestion != 'Pass' : md_result.Suggestion == 'Block';
if( md_check )
{
// 终止输出
console.log("审核不通过", data.choices[0].message.content, md_result);
data.choices[0].message.content = "这个话题不适合讨论,换个话题吧。";
}else
{
console.log("审核通过", data.choices[0].message.content);
}
}
res.json(data);
}
} catch (error) {
console.error(error);
res.status(500).json({"error":error.toString()});
}
})
async function* streamAsyncIterable(stream) {
const reader = stream.getReader();
try {
while (true) {
const { done, value } = await reader.read();
if (done) {
return;
}
yield value;
}
} finally {
reader.releaseLock();
}
}
async function myFetch(url, options) {
const {timeout, ...fetchOptions} = options;
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout||30000)
const res = await fetch(url, {...fetchOptions,signal:controller.signal});
clearTimeout(timeoutId);
return res;
}
// Error handler
app.use(function(err, req, res, next) {
console.error(err)
res.status(500).send('Internal Serverless Error')
})
const port = process.env.PORT||9000;
app.listen(port, () => {
console.log(`Server start on http://localhost:${port}`);
})