File size: 639 Bytes
c34c995
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3044058
c34c995
 
 
4f33245
3044058
c34c995
 
 
 
4f33245
 
 
 
c34c995
 
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
//
// SPDX-FileCopyrightText: Hadad <[email protected]>
// SPDX-License-Identifier: Apache-2.0
//

export default {
  server: {
    port: 3000,
    host: '0.0.0.0'
  },
  api: {
    baseUrl: process.env.OPENAI_API_BASE_URL,
    key: process.env.OPENAI_API_KEY,
    timeout: 120000
  },
  storage: {
    maxAge: 600000,
    cleanupInterval: 60000
  },
  limits: {
    bodySize: '2mb',
    maxContentLength: 2097152
  },
  generation: {
    progressInterval: 800,
    startDelay: 50,
    maxProgress: 99
  },
  paths: {
    views: 'public',
    mainView: 'webViewer'
  },
  websocket: {
    heartbeat: 30000,
    reconnectDelay: 100
  }
};