Update server.js
Browse files
server.js
CHANGED
@@ -30,8 +30,8 @@ const __dirname = path.dirname(__filename);
|
|
30 |
const PORT = process.env.APP_PORT || 3000;
|
31 |
const REDIRECT_URI =
|
32 |
process.env.REDIRECT_URI || `http://localhost:${PORT}/auth/login`;
|
33 |
-
const MODEL_ID = "
|
34 |
-
const MAX_REQUESTS_PER_IP =
|
35 |
|
36 |
app.use(cookieParser());
|
37 |
app.use(bodyParser.json());
|
|
|
30 |
const PORT = process.env.APP_PORT || 3000;
|
31 |
const REDIRECT_URI =
|
32 |
process.env.REDIRECT_URI || `http://localhost:${PORT}/auth/login`;
|
33 |
+
const MODEL_ID = "Qwen/Qwen2.5-Coder-32B-Instruct";
|
34 |
+
const MAX_REQUESTS_PER_IP = 2000;
|
35 |
|
36 |
app.use(cookieParser());
|
37 |
app.use(bodyParser.json());
|