Commit
·
d2e90b4
1
Parent(s):
7fefeaf
use a 5 minutes timeout
Browse files- src/index.mts +1 -1
src/index.mts
CHANGED
@@ -37,7 +37,7 @@ const app = express()
|
|
37 |
const port = 7860
|
38 |
|
39 |
const minPromptSize = 16 // if you change this, you will need to also change in public/index.html
|
40 |
-
const timeoutInSec =
|
41 |
|
42 |
app.use(express.static("public"))
|
43 |
|
|
|
37 |
const port = 7860
|
38 |
|
39 |
const minPromptSize = 16 // if you change this, you will need to also change in public/index.html
|
40 |
+
const timeoutInSec = 5 * 60
|
41 |
|
42 |
app.use(express.static("public"))
|
43 |
|