| // | |
| // SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org> | |
| // SPDX-License-Identifier: MIT | |
| // | |
| export default { | |
| api: { | |
| baseUrl: process.env.OPENAI_API_BASE_URL, // /v1 | |
| key: process.env.OPENAI_API_KEY, | |
| model: "openai/gpt-5-chat-latest", | |
| maxRetries: 5, | |
| timeout: 20000 // 20 seconds | |
| } | |
| }; | |