| // | |
| // SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org> | |
| // 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 | |
| } | |
| }; | 
