ai / src /backend /config.js
hadadrjt's picture
ai: Release demo playground source code.
ce1ab17
raw
history blame contribute delete
309 Bytes
//
// 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;