AZILS commited on
Commit
e090494
·
verified ·
1 Parent(s): 879c88f

Update hf.js

Browse files
Files changed (1) hide show
  1. hf.js +211 -300
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
- // 配置 axios 的代理
33
  function configureAxiosProxy() {
34
  const proxy = getRandomProxy();
35
  if (proxy) {
@@ -41,17 +44,16 @@ function configureAxiosProxy() {
41
  }
42
  }
43
 
44
- // 从外部 API 更新代理池
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(); // 更新 axios 代理
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; // 默认 5 分钟
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
- // 模型列表 API
73
  app.get('/hf/v1/models', (req, res) => {
74
  const models = {
75
  "object": "list",
76
  "data": [
77
- {
78
- "id": "claude-3.5-sonnet",
79
- "object": "model",
80
- "created": 1706745938,
81
- "owned_by": "cursor"
82
- },
83
- {
84
- "id": "gpt-4",
85
- "object": "model",
86
- "created": 1706745938,
87
- "owned_by": "cursor"
88
- },
89
- {
90
- "id": "gpt-4o",
91
- "object": "model",
92
- "created": 1706745938,
93
- "owned_by": "cursor"
94
- },
95
- {
96
- "id": "claude-3-opus",
97
- "object": "model",
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
- proxy: proxy ? proxy : undefined,
215
- timeout: 30000, // 超时 30 秒
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
- <!DOCTYPE html>
243
- <html lang="en">
244
- <head>
245
- <meta charset="UTF-8">
246
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
247
- <title>Cursor To OpenAI</title>
248
- <style>
249
- :root {
250
- --primary-color: #2563eb;
251
- --bg-color: #f8fafc;
252
- --card-bg: #ffffff;
253
- }
254
- body {
255
- padding: 20px;
256
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
257
- max-width: 1000px;
258
- margin: 0 auto;
259
- line-height: 1.6;
260
- background: var(--bg-color);
261
- color: #1a1a1a;
262
- }
263
- .container {
264
- padding: 20px;
265
- }
266
- .header {
267
- text-align: center;
268
- margin-bottom: 40px;
269
- }
270
- .header h1 {
271
- color: var(--primary-color);
272
- font-size: 2.5em;
273
- margin-bottom: 10px;
274
- }
275
- .info {
276
- background: #fff;
277
- padding: 25px;
278
- border-radius: 12px;
279
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
280
- margin-bottom: 30px;
281
- border: 1px solid #e5e7eb;
282
- }
283
- .info-item {
284
- margin: 15px 0;
285
- padding: 10px;
286
- background: #f8fafc;
287
- border-radius: 8px;
288
- border: 1px solid #e5e7eb;
289
- }
290
- .info-label {
291
- color: #4b5563;
292
- font-size: 0.9em;
293
- margin-bottom: 5px;
294
- }
295
- .info-value {
296
- color: var(--primary-color);
297
- font-weight: 500;
298
- }
299
- .models {
300
- background: var(--card-bg);
301
- padding: 25px;
302
- border-radius: 12px;
303
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
304
- border: 1px solid #e5e7eb;
305
- }
306
- .models h3 {
307
- color: #1a1a1a;
308
- margin-bottom: 20px;
309
- font-size: 1.5em;
310
- border-bottom: 2px solid #e5e7eb;
311
- padding-bottom: 10px;
312
- }
313
- .model-item {
314
- margin: 12px 0;
315
- padding: 15px;
316
- background: #f8fafc;
317
- border-radius: 8px;
318
- border: 1px solid #e5e7eb;
319
- transition: all 0.3s ease;
320
- display: flex;
321
- justify-content: space-between;
322
- align-items: center;
323
- }
324
- .model-item:hover {
325
- transform: translateY(-2px);
326
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
327
- }
328
- .model-name {
329
- font-weight: 500;
330
- color: #1a1a1a;
331
- }
332
- .model-provider {
333
- color: #6b7280;
334
- font-size: 0.9em;
335
- padding: 4px 8px;
336
- background: #f1f5f9;
337
- border-radius: 4px;
338
- }
339
- @media (max-width: 768px) {
340
- body {
341
- padding: 10px;
342
- }
343
- .container {
344
- padding: 10px;
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
- <h2>配置信息</h2>
357
- <div class="info-item">
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="models">
371
- <h3>���持的模型列表</h3>
372
- <div id="model-list"></div>
373
  </div>
374
  </div>
375
- <script>
376
- const url = new URL(window.location.href);
377
- const link = url.protocol + '//' + url.host + '/hf/v1';
378
- document.getElementById('endpoint-url').textContent = link;
379
- fetch(link + '/models')
380
- .then(response => response.json())
381
- .then(data => {
382
- const modelList = document.getElementById('model-list');
383
- data.data.forEach(model => {
384
- const div = document.createElement('div');
385
- div.className = 'model-item';
386
- div.innerHTML = \`
387
- <span class="model-name">\${model.id}</span>
388
- <span class="model-provider">\${model.owned_by}</span>
389
- \`;
390
- modelList.appendChild(div);
391
- });
392
- })
393
- .catch(error => {
394
- console.error('Error fetching models:', error);
395
- document.getElementById('model-list').textContent = '获取模型列表失败';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  });
397
- </script>
398
- </body>
399
- </html>
 
 
 
 
 
 
 
 
400
  `;
401
  res.send(htmlContent);
402
  });
403
 
404
- // 启动服务前配置初始 axios 代理
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
+ });