ai / config.ts
hadadrjt's picture
ai: Refac B/F. #5
f5f700d
Raw
History Blame Contribute Delete
310 Bytes
//
// 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
}
};