Spaces:
Running
Running
File size: 309 Bytes
ce1ab17 |
1 2 3 4 5 6 7 8 9 10 11 |
//
// SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
// SPDX-License-Identifier: Apache-2.0
//
// Server port.
export const PORT = process.env.PORT;
// API endpoint.
export const OPENAI_API_BASE_URL = process.env.OPENAI_API_BASE_URL;
// API key.
export const OPENAI_API_KEY = process.env.OPENAI_API_KEY; |