Spaces:
Sleeping
Sleeping
Update hf.js
Browse files
hf.js
CHANGED
@@ -1,18 +1,21 @@
|
|
|
|
1 |
const express = require('express');
|
2 |
const morgan = require('morgan');
|
3 |
const { createProxyMiddleware } = require('http-proxy-middleware');
|
4 |
const axios = require('axios');
|
5 |
-
const fs = require('fs');
|
6 |
const url = require('url');
|
7 |
const app = express();
|
8 |
|
|
|
9 |
app.use(morgan('dev'));
|
|
|
|
|
10 |
|
11 |
-
//
|
12 |
let proxyPool = process.env.PROXY ? process.env.PROXY.split(',').map(p => p.trim()) : [];
|
13 |
console.log('Initial proxy pool:', proxyPool);
|
14 |
|
15 |
-
//
|
16 |
function getRandomProxy() {
|
17 |
if (proxyPool.length === 0) return null;
|
18 |
const randomIndex = Math.floor(Math.random() * proxyPool.length);
|
@@ -29,7 +32,7 @@ function getRandomProxy() {
|
|
29 |
};
|
30 |
}
|
31 |
|
32 |
-
//
|
33 |
function configureAxiosProxy() {
|
34 |
const proxy = getRandomProxy();
|
35 |
if (proxy) {
|
@@ -41,17 +44,16 @@ function configureAxiosProxy() {
|
|
41 |
}
|
42 |
}
|
43 |
|
44 |
-
//
|
45 |
async function updateProxyPool() {
|
46 |
const proxyApiUrl = process.env.PROXY_API_URL || 'http://example.com/api/proxies';
|
47 |
try {
|
48 |
const response = await axios.get(proxyApiUrl);
|
49 |
-
// 假设 API 返回格式为 { proxies: ["http://user:pass@host:port", ...] }
|
50 |
const newProxies = response.data.proxies || [];
|
51 |
if (newProxies.length > 0) {
|
52 |
proxyPool = newProxies;
|
53 |
console.log('Proxy pool updated:', proxyPool);
|
54 |
-
configureAxiosProxy();
|
55 |
} else {
|
56 |
console.warn('No proxies received from API');
|
57 |
}
|
@@ -60,160 +62,53 @@ async function updateProxyPool() {
|
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
//
|
64 |
-
const updateInterval = parseInt(process.env.PROXY_UPDATE_INTERVAL) || 300; //
|
65 |
if (updateInterval > 0) {
|
66 |
setInterval(updateProxyPool, updateInterval * 1000);
|
67 |
console.log(`Proxy pool will update every ${updateInterval} seconds`);
|
68 |
-
//
|
69 |
-
updateProxyPool();
|
70 |
}
|
71 |
|
72 |
-
//
|
73 |
app.get('/hf/v1/models', (req, res) => {
|
74 |
const models = {
|
75 |
"object": "list",
|
76 |
"data": [
|
77 |
-
{
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
},
|
83 |
-
{
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
},
|
89 |
-
{
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
},
|
95 |
-
{
|
96 |
-
|
97 |
-
|
98 |
-
"created": 1706745938,
|
99 |
-
"owned_by": "cursor"
|
100 |
-
},
|
101 |
-
{
|
102 |
-
"id": "gpt-3.5-turbo",
|
103 |
-
"object": "model",
|
104 |
-
"created": 1706745938,
|
105 |
-
"owned_by": "cursor"
|
106 |
-
},
|
107 |
-
{
|
108 |
-
"id": "gpt-4-turbo-2024-04-09",
|
109 |
-
"object": "model",
|
110 |
-
"created": 1706745938,
|
111 |
-
"owned_by": "cursor"
|
112 |
-
},
|
113 |
-
{
|
114 |
-
"id": "gpt-4o-128k",
|
115 |
-
"object": "model",
|
116 |
-
"created": 1706745938,
|
117 |
-
"owned_by": "cursor"
|
118 |
-
},
|
119 |
-
{
|
120 |
-
"id": "gemini-1.5-flash-500k",
|
121 |
-
"object": "model",
|
122 |
-
"created": 1706745938,
|
123 |
-
"owned_by": "cursor"
|
124 |
-
},
|
125 |
-
{
|
126 |
-
"id": "claude-3-haiku-200k",
|
127 |
-
"object": "model",
|
128 |
-
"created": 1706745938,
|
129 |
-
"owned_by": "cursor"
|
130 |
-
},
|
131 |
-
{
|
132 |
-
"id": "claude-3-5-sonnet-200k",
|
133 |
-
"object": "model",
|
134 |
-
"created": 1706745938,
|
135 |
-
"owned_by": "cursor"
|
136 |
-
},
|
137 |
-
{
|
138 |
-
"id": "claude-3-5-sonnet-20241022",
|
139 |
-
"object": "model",
|
140 |
-
"created": 1706745938,
|
141 |
-
"owned_by": "cursor"
|
142 |
-
},
|
143 |
-
{
|
144 |
-
"id": "gpt-4o-mini",
|
145 |
-
"object": "model",
|
146 |
-
"created": 1706745938,
|
147 |
-
"owned_by": "cursor"
|
148 |
-
},
|
149 |
-
{
|
150 |
-
"id": "o1-mini",
|
151 |
-
"object": "model",
|
152 |
-
"created": 1706745938,
|
153 |
-
"owned_by": "cursor"
|
154 |
-
},
|
155 |
-
{
|
156 |
-
"id": "o1-preview",
|
157 |
-
"object": "model",
|
158 |
-
"created": 1706745938,
|
159 |
-
"owned_by": "cursor"
|
160 |
-
},
|
161 |
-
{
|
162 |
-
"id": "o1",
|
163 |
-
"object": "model",
|
164 |
-
"created": 1706745938,
|
165 |
-
"owned_by": "cursor"
|
166 |
-
},
|
167 |
-
{
|
168 |
-
"id": "claude-3.5-haiku",
|
169 |
-
"object": "model",
|
170 |
-
"created": 1706745938,
|
171 |
-
"owned_by": "cursor"
|
172 |
-
},
|
173 |
-
{
|
174 |
-
"id": "gemini-exp-1206",
|
175 |
-
"object": "model",
|
176 |
-
"created": 1706745938,
|
177 |
-
"owned_by": "cursor"
|
178 |
-
},
|
179 |
-
{
|
180 |
-
"id": "gemini-2.0-flash-thinking-exp",
|
181 |
-
"object": "model",
|
182 |
-
"created": 1706745938,
|
183 |
-
"owned_by": "cursor"
|
184 |
-
},
|
185 |
-
{
|
186 |
-
"id": "gemini-2.0-flash-exp",
|
187 |
-
"object": "model",
|
188 |
-
"created": 1706745938,
|
189 |
-
"owned_by": "cursor"
|
190 |
-
},
|
191 |
-
{
|
192 |
-
"id": "deepseek-v3",
|
193 |
-
"object": "model",
|
194 |
-
"created": 1706745938,
|
195 |
-
"owned_by": "cursor"
|
196 |
-
},
|
197 |
-
{
|
198 |
-
"id": "deepseek-r1",
|
199 |
-
"object": "model",
|
200 |
-
"created": 1706745938,
|
201 |
-
"owned_by": "cursor"
|
202 |
-
}
|
203 |
]
|
204 |
};
|
205 |
res.json(models);
|
206 |
});
|
207 |
|
208 |
-
//
|
209 |
app.use('/hf/v1/chat/completions', (req, res, next) => {
|
210 |
const proxy = getRandomProxy();
|
211 |
const middleware = createProxyMiddleware({
|
212 |
-
target: 'http://localhost:3010/v1/chat/completions', //
|
213 |
changeOrigin: true,
|
214 |
-
|
215 |
-
|
216 |
-
proxyTimeout: 30000, // 代理超时 30 秒
|
217 |
onProxyReq: (proxyReq, req, res) => {
|
218 |
if (req.body) {
|
219 |
const bodyData = JSON.stringify(req.body);
|
@@ -236,176 +131,192 @@ app.use('/hf/v1/chat/completions', (req, res, next) => {
|
|
236 |
middleware(req, res, next);
|
237 |
});
|
238 |
|
239 |
-
//
|
240 |
app.get('/', (req, res) => {
|
241 |
const htmlContent = `
|
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 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
}
|
346 |
-
}
|
347 |
-
</style>
|
348 |
-
</head>
|
349 |
-
<body>
|
350 |
-
<div class="container">
|
351 |
-
<div class="header">
|
352 |
-
<h1>Cursor To OpenAI Server</h1>
|
353 |
-
<p>高性能 AI 模型代理服务</p>
|
354 |
</div>
|
355 |
-
<div class="info">
|
356 |
-
<
|
357 |
-
<div class="info-
|
358 |
-
<div class="info-label">聊天来源</div>
|
359 |
-
<div class="info-value">自定义(兼容 OpenAI)</div>
|
360 |
-
</div>
|
361 |
-
<div class="info-item">
|
362 |
-
<div class="info-label">自定义端点(基本URL)</div>
|
363 |
-
<div class="info-value" id="endpoint-url"></div>
|
364 |
-
</div>
|
365 |
-
<div class="info-item">
|
366 |
-
<div class="info-label">自定义API密钥</div>
|
367 |
-
<div class="info-value">抓取的Cursor Cookie,格式为user_...</div>
|
368 |
-
</div>
|
369 |
</div>
|
370 |
-
<div class="
|
371 |
-
<
|
372 |
-
<div
|
373 |
</div>
|
374 |
</div>
|
375 |
-
<
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
});
|
397 |
-
|
398 |
-
|
399 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
`;
|
401 |
res.send(htmlContent);
|
402 |
});
|
403 |
|
404 |
-
//
|
405 |
configureAxiosProxy();
|
406 |
|
407 |
const port = process.env.HF_PORT || 7860;
|
408 |
app.listen(port, () => {
|
409 |
console.log(`HF Proxy server is running at PORT: ${port}`);
|
410 |
-
});
|
411 |
-
|
|
|
1 |
+
// Import required modules
|
2 |
const express = require('express');
|
3 |
const morgan = require('morgan');
|
4 |
const { createProxyMiddleware } = require('http-proxy-middleware');
|
5 |
const axios = require('axios');
|
|
|
6 |
const url = require('url');
|
7 |
const app = express();
|
8 |
|
9 |
+
// Middleware for logging requests
|
10 |
app.use(morgan('dev'));
|
11 |
+
// Middleware to parse JSON bodies
|
12 |
+
app.use(express.json());
|
13 |
|
14 |
+
// Global proxy pool
|
15 |
let proxyPool = process.env.PROXY ? process.env.PROXY.split(',').map(p => p.trim()) : [];
|
16 |
console.log('Initial proxy pool:', proxyPool);
|
17 |
|
18 |
+
// Function to get a random proxy
|
19 |
function getRandomProxy() {
|
20 |
if (proxyPool.length === 0) return null;
|
21 |
const randomIndex = Math.floor(Math.random() * proxyPool.length);
|
|
|
32 |
};
|
33 |
}
|
34 |
|
35 |
+
// Configure axios proxy
|
36 |
function configureAxiosProxy() {
|
37 |
const proxy = getRandomProxy();
|
38 |
if (proxy) {
|
|
|
44 |
}
|
45 |
}
|
46 |
|
47 |
+
// Update proxy pool from external API
|
48 |
async function updateProxyPool() {
|
49 |
const proxyApiUrl = process.env.PROXY_API_URL || 'http://example.com/api/proxies';
|
50 |
try {
|
51 |
const response = await axios.get(proxyApiUrl);
|
|
|
52 |
const newProxies = response.data.proxies || [];
|
53 |
if (newProxies.length > 0) {
|
54 |
proxyPool = newProxies;
|
55 |
console.log('Proxy pool updated:', proxyPool);
|
56 |
+
configureAxiosProxy();
|
57 |
} else {
|
58 |
console.warn('No proxies received from API');
|
59 |
}
|
|
|
62 |
}
|
63 |
}
|
64 |
|
65 |
+
// Periodically update proxy pool
|
66 |
+
const updateInterval = parseInt(process.env.PROXY_UPDATE_INTERVAL) || 300; // Default 5 minutes
|
67 |
if (updateInterval > 0) {
|
68 |
setInterval(updateProxyPool, updateInterval * 1000);
|
69 |
console.log(`Proxy pool will update every ${updateInterval} seconds`);
|
70 |
+
updateProxyPool(); // Initial update
|
|
|
71 |
}
|
72 |
|
73 |
+
// Models API
|
74 |
app.get('/hf/v1/models', (req, res) => {
|
75 |
const models = {
|
76 |
"object": "list",
|
77 |
"data": [
|
78 |
+
{ "id": "claude-3.5-sonnet", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
79 |
+
{ "id": "gpt-4", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
80 |
+
{ "id": "gpt-4o", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
81 |
+
{ "id": "claude-3-opus", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
82 |
+
{ "id": "gpt-3.5-turbo", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
83 |
+
{ "id": "gpt-4-turbo-2024-04-09", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
84 |
+
{ "id": "gpt-4o-128k", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
85 |
+
{ "id": "gemini-1.5-flash-500k", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
86 |
+
{ "id": "claude-3-haiku-200k", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
87 |
+
{ "id": "claude-3-5-sonnet-200k", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
88 |
+
{ "id": "claude-3-5-sonnet-20241022", "object": "model", "created": 1706745938, " owned_by": "cursor" },
|
89 |
+
{ "id": "gpt-4o-mini", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
90 |
+
{ "id": "o1-mini", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
91 |
+
{ "id": "o1-preview", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
92 |
+
{ "id": "o1", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
93 |
+
{ "id": "claude-3.5-haiku", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
94 |
+
{ "id": "gemini-exp-1206", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
95 |
+
{ "id": "gemini-2.0-flash-thinking-exp", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
96 |
+
{ "id": "gemini-2.0-flash-exp", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
97 |
+
{ "id": "deepseek-v3", "object": "model", "created": 1706745938, "owned_by": "cursor" },
|
98 |
+
{ "id": "deepseek-r1", "object": "model", "created": 1706745938, "owned_by": "cursor" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
]
|
100 |
};
|
101 |
res.json(models);
|
102 |
});
|
103 |
|
104 |
+
// Proxy for chat completions
|
105 |
app.use('/hf/v1/chat/completions', (req, res, next) => {
|
106 |
const proxy = getRandomProxy();
|
107 |
const middleware = createProxyMiddleware({
|
108 |
+
target: 'http://localhost:3010/v1/chat/completions', // Replace with actual target service
|
109 |
changeOrigin: true,
|
110 |
+
timeout: 30000,
|
111 |
+
proxyTimeout: 30000,
|
|
|
112 |
onProxyReq: (proxyReq, req, res) => {
|
113 |
if (req.body) {
|
114 |
const bodyData = JSON.stringify(req.body);
|
|
|
131 |
middleware(req, res, next);
|
132 |
});
|
133 |
|
134 |
+
// Home page with interactive frontend
|
135 |
app.get('/', (req, res) => {
|
136 |
const htmlContent = `
|
137 |
+
<!DOCTYPE html>
|
138 |
+
<html lang="en">
|
139 |
+
<head>
|
140 |
+
<meta charset="UTF-8">
|
141 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
142 |
+
<title>Cursor To OpenAI</title>
|
143 |
+
<style>
|
144 |
+
:root {
|
145 |
+
--primary-color: #1e90ff;
|
146 |
+
--bg-color: #121212;
|
147 |
+
--card-bg: #1e1e1e;
|
148 |
+
--text-color: #ffffff;
|
149 |
+
--input-bg: #2a2a2a;
|
150 |
+
--input-border: #444;
|
151 |
+
}
|
152 |
+
body {
|
153 |
+
padding: 20px;
|
154 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
155 |
+
max-width: 800px;
|
156 |
+
margin: 0 auto;
|
157 |
+
line-height: 1.6;
|
158 |
+
background: var(--bg-color);
|
159 |
+
color: var(--text-color);
|
160 |
+
}
|
161 |
+
.container {
|
162 |
+
padding: 20px;
|
163 |
+
}
|
164 |
+
.header {
|
165 |
+
text-align: center;
|
166 |
+
margin-bottom: 40px;
|
167 |
+
}
|
168 |
+
.header h1 {
|
169 |
+
color: var(--primary-color);
|
170 |
+
font-size: 2.5em;
|
171 |
+
margin-bottom: 10px;
|
172 |
+
}
|
173 |
+
.info, .models, .chat {
|
174 |
+
background: var(--card-bg);
|
175 |
+
padding: 25px;
|
176 |
+
border-radius: 12px;
|
177 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
|
178 |
+
margin-bottom: 30px;
|
179 |
+
border: 1px solid #444;
|
180 |
+
}
|
181 |
+
.info-item, .model-item {
|
182 |
+
margin: 15px 0;
|
183 |
+
padding: 10px;
|
184 |
+
background: #2a2a2a;
|
185 |
+
border-radius: 8px;
|
186 |
+
border: 1px solid #444;
|
187 |
+
}
|
188 |
+
.info-label, .model-name {
|
189 |
+
color: #bbb;
|
190 |
+
font-size: 0.9em;
|
191 |
+
margin-bottom: 5px;
|
192 |
+
}
|
193 |
+
.info-value, .model-provider {
|
194 |
+
color: var(--primary-color);
|
195 |
+
font-weight: 500;
|
196 |
+
}
|
197 |
+
.chat-input {
|
198 |
+
width: 100%;
|
199 |
+
padding: 10px;
|
200 |
+
border: 1px solid var(--input-border);
|
201 |
+
border-radius: 5px;
|
202 |
+
background: var(--input-bg);
|
203 |
+
color: var(--text-color);
|
204 |
+
margin-bottom: 10px;
|
205 |
+
}
|
206 |
+
.chat-button {
|
207 |
+
padding: 10px 15px;
|
208 |
+
background: var(--primary-color);
|
209 |
+
color: var(--text-color);
|
210 |
+
border: none;
|
211 |
+
border-radius: 5px;
|
212 |
+
cursor: pointer;
|
213 |
+
transition: background 0.3s;
|
214 |
+
}
|
215 |
+
.chat-button:hover {
|
216 |
+
background: #1c7bbf;
|
217 |
+
}
|
218 |
+
.chat-output {
|
219 |
+
margin-top: 20px;
|
220 |
+
padding: 10px;
|
221 |
+
background: #2a2a2a;
|
222 |
+
border-radius: 8px;
|
223 |
+
border: 1px solid #444;
|
224 |
+
max-height: 300px;
|
225 |
+
overflow-y: auto;
|
226 |
+
}
|
227 |
+
</style>
|
228 |
+
</head>
|
229 |
+
<body>
|
230 |
+
<div class="container">
|
231 |
+
<div class="header">
|
232 |
+
<h1>Cursor To OpenAI Server</h1>
|
233 |
+
<p>高性能 AI 模型代理服务</p>
|
234 |
+
</div>
|
235 |
+
<div class="info">
|
236 |
+
<h2>配置信息</h2>
|
237 |
+
<div class="info-item">
|
238 |
+
<div class="info-label">聊天来源</div>
|
239 |
+
<div class="info-value">自定义(兼容 OpenAI)</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
</div>
|
241 |
+
<div class="info-item">
|
242 |
+
<div class="info-label">自定义端点(基本URL)</div>
|
243 |
+
<div class="info-value" id="endpoint-url"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
</div>
|
245 |
+
<div class="info-item">
|
246 |
+
<div class="info-label">自定义API密钥</div>
|
247 |
+
<div class="info-value">抓取的Cursor Cookie,格式为user_...</div>
|
248 |
</div>
|
249 |
</div>
|
250 |
+
<div class="chat">
|
251 |
+
<h3>与 AI 互动</h3>
|
252 |
+
<input type="text" id="user-input" class="chat-input" placeholder="输入你的问题..." />
|
253 |
+
<button id="send-button" class="chat-button">发送</button>
|
254 |
+
<div id="chat-output" class="chat-output"></div>
|
255 |
+
</div>
|
256 |
+
<div class="models">
|
257 |
+
<h3>支持的模型列表</h3>
|
258 |
+
<div id="model-list"></div>
|
259 |
+
</div>
|
260 |
+
</div>
|
261 |
+
<script>
|
262 |
+
const url = new URL(window.location.href);
|
263 |
+
const link = url.protocol + '//' + url.host + '/hf/v1';
|
264 |
+
document.getElementById('endpoint-url').textContent = link;
|
265 |
+
|
266 |
+
fetch(link + '/models')
|
267 |
+
.then(response => response.json())
|
268 |
+
.then(data => {
|
269 |
+
const modelList = document.getElementById('model-list');
|
270 |
+
data.data.forEach(model => {
|
271 |
+
const div = document.createElement('div');
|
272 |
+
div.className = 'model-item';
|
273 |
+
div.innerHTML = \`
|
274 |
+
<span class="model-name">\${model.id}</span>
|
275 |
+
<span class="model-provider">\${model.owned_by}</span>
|
276 |
+
\`;
|
277 |
+
modelList.appendChild(div);
|
278 |
+
});
|
279 |
+
})
|
280 |
+
.catch(error => {
|
281 |
+
console.error('Error fetching models:', error);
|
282 |
+
document.getElementById('model-list').textContent = '获取模型列表失败';
|
283 |
+
});
|
284 |
+
|
285 |
+
document.getElementById('send-button').addEventListener('click', async () => {
|
286 |
+
const userInput = document.getElementById('user-input').value;
|
287 |
+
if (!userInput) return;
|
288 |
+
|
289 |
+
const chatOutput = document.getElementById('chat-output');
|
290 |
+
chatOutput.innerHTML += \`<div><strong>你:</strong> \${userInput}</div>\`;
|
291 |
+
document.getElementById('user-input').value = '';
|
292 |
+
|
293 |
+
try {
|
294 |
+
const response = await fetch(link + '/chat/completions', {
|
295 |
+
method: 'POST',
|
296 |
+
headers: {
|
297 |
+
'Content-Type': 'application/json',
|
298 |
+
},
|
299 |
+
body: JSON.stringify({ prompt: userInput, model: "gpt-4" }) // Specify the model you want to use
|
300 |
});
|
301 |
+
const data = await response.json();
|
302 |
+
chatOutput.innerHTML += \`<div><strong>AI:</strong> \${data.choices[0].text}</div>\`;
|
303 |
+
chatOutput.scrollTop = chatOutput.scrollHeight; // Scroll to the bottom
|
304 |
+
} catch (error) {
|
305 |
+
console.error('Error fetching chat completion:', error);
|
306 |
+
chatOutput.innerHTML += '<div><strong>AI:</strong> 出现错误,请稍后再试。</div>';
|
307 |
+
}
|
308 |
+
});
|
309 |
+
</script>
|
310 |
+
</body>
|
311 |
+
</html>
|
312 |
`;
|
313 |
res.send(htmlContent);
|
314 |
});
|
315 |
|
316 |
+
// Start the server and configure initial axios proxy
|
317 |
configureAxiosProxy();
|
318 |
|
319 |
const port = process.env.HF_PORT || 7860;
|
320 |
app.listen(port, () => {
|
321 |
console.log(`HF Proxy server is running at PORT: ${port}`);
|
322 |
+
});
|
|