mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 23:56:39 +08:00
149 lines
4.4 KiB
TypeScript
149 lines
4.4 KiB
TypeScript
import md5 from "spark-md5";
|
||
import { DEFAULT_MODELS } from "../constant";
|
||
|
||
declare global {
|
||
namespace NodeJS {
|
||
interface ProcessEnv {
|
||
PROXY_URL?: string; // docker only
|
||
|
||
OPENAI_API_KEY?: string;
|
||
CODE?: string;
|
||
|
||
BASE_URL?: string;
|
||
OPENAI_ORG_ID?: string; // openai only
|
||
|
||
// @ts-ignore
|
||
VERCEL?: string;
|
||
BUILD_MODE?: "standalone" | "export";
|
||
BUILD_APP?: string; // is building desktop app
|
||
|
||
HIDE_USER_API_KEY?: string; // disable user's api key input
|
||
DISABLE_GPT4?: string; // allow user to use gpt-4 or not
|
||
ENABLE_BALANCE_QUERY?: string; // allow user to query balance or not
|
||
DISABLE_FAST_LINK?: string; // disallow parse settings from url or not
|
||
CUSTOM_MODELS?: string; // to control custom models
|
||
DEFAULT_MODEL?: string; // to cnntrol default model in every new chat window
|
||
|
||
// azure only
|
||
AZURE_URL?: string; // https://{azure-url}/openai/deployments/{deploy-name}
|
||
AZURE_API_KEY?: string;
|
||
AZURE_API_VERSION?: string;
|
||
AZURE_VOICE_KEY?: string;
|
||
|
||
// google only
|
||
GOOGLE_API_KEY?: string;
|
||
GOOGLE_URL?: string;
|
||
|
||
// google tag manager
|
||
GTM_ID?: string;
|
||
}
|
||
}
|
||
}
|
||
|
||
const ACCESS_CODES = (function getAccessCodes(): Set<string> {
|
||
const code = process.env.CODE;
|
||
|
||
try {
|
||
const codes = (code?.split(",") ?? [])
|
||
.filter((v) => !!v)
|
||
.map((v) => md5.hash(v.trim()));
|
||
return new Set(codes);
|
||
} catch (e) {
|
||
return new Set();
|
||
}
|
||
})();
|
||
|
||
function getApiKey(keys?: string) {
|
||
const apiKeyEnvVar = keys ?? "";
|
||
const apiKeys = apiKeyEnvVar.split(",").map((v) => v.trim());
|
||
const randomIndex = Math.floor(Math.random() * apiKeys.length);
|
||
const apiKey = apiKeys[randomIndex];
|
||
if (apiKey) {
|
||
// console.log(
|
||
// `[Server Config] using ${randomIndex + 1} of ${
|
||
// apiKeys.length
|
||
// } api key - ${apiKey}`,
|
||
// );
|
||
}
|
||
|
||
return apiKey;
|
||
}
|
||
|
||
export const getServerSideConfig = () => {
|
||
if (typeof process === "undefined") {
|
||
throw Error(
|
||
"[Server Config] you are importing a nodejs-only module outside of nodejs",
|
||
);
|
||
}
|
||
|
||
const disableGPT4 = !!process.env.DISABLE_GPT4;
|
||
let customModels = process.env.CUSTOM_MODELS ?? "";
|
||
let defaultModel = process.env.DEFAULT_MODEL ?? "";
|
||
|
||
if (disableGPT4) {
|
||
if (customModels) customModels += ",";
|
||
customModels += DEFAULT_MODELS.filter((m) => m.name.startsWith("gpt-4"))
|
||
.map((m) => "-" + m.name)
|
||
.join(",");
|
||
if (defaultModel.startsWith("gpt-4")) defaultModel = "";
|
||
}
|
||
|
||
// const isAzure = !!process.env.AZURE_URL;
|
||
const isGoogle = !!process.env.GOOGLE_API_KEY;
|
||
const isAnthropic = !!process.env.ANTHROPIC_API_KEY;
|
||
// 需要一个函数来判断请求中模型是否为微软的。
|
||
// 当前逻辑,gpt-4-32k模型为微软,别的不是
|
||
// const isAzure = !!process.env.AZURE_URL;
|
||
const hasAzure = !!process.env.AZURE_URL;
|
||
|
||
// const apiKeyEnvVar = process.env.OPENAI_API_KEY ?? "";
|
||
// const apiKeys = apiKeyEnvVar.split(",").map((v) => v.trim());
|
||
// const randomIndex = Math.floor(Math.random() * apiKeys.length);
|
||
// const apiKey = apiKeys[randomIndex];
|
||
// console.log(
|
||
// `[Server Config] using ${randomIndex + 1} of ${apiKeys.length} api key`,
|
||
// );
|
||
|
||
const allowedWebDevEndpoints = (
|
||
process.env.WHITE_WEBDEV_ENDPOINTS ?? ""
|
||
).split(",");
|
||
|
||
return {
|
||
baseUrl: process.env.BASE_URL,
|
||
apiKey: getApiKey(process.env.OPENAI_API_KEY),
|
||
openaiOrgId: process.env.OPENAI_ORG_ID,
|
||
|
||
azureUrl: process.env.AZURE_URL ?? "",
|
||
azureApiKey: getApiKey(process.env.AZURE_API_KEY) ?? "",
|
||
azureApiVersion: process.env.AZURE_API_VERSION ?? "",
|
||
|
||
azureVoiceKey: process.env.AZURE_VOICE_KEY ?? "",
|
||
|
||
isGoogle,
|
||
googleApiKey: getApiKey(process.env.GOOGLE_API_KEY),
|
||
googleUrl: process.env.GOOGLE_URL,
|
||
|
||
isAnthropic,
|
||
anthropicApiKey: getApiKey(process.env.ANTHROPIC_API_KEY),
|
||
anthropicApiVersion: process.env.ANTHROPIC_API_VERSION,
|
||
anthropicUrl: process.env.ANTHROPIC_URL,
|
||
|
||
gtmId: process.env.GTM_ID,
|
||
|
||
needCode: ACCESS_CODES.size > 0,
|
||
code: process.env.CODE,
|
||
codes: ACCESS_CODES,
|
||
|
||
proxyUrl: process.env.PROXY_URL,
|
||
isVercel: !!process.env.VERCEL,
|
||
|
||
hideUserApiKey: !!process.env.HIDE_USER_API_KEY,
|
||
disableGPT4,
|
||
hideBalanceQuery: !process.env.ENABLE_BALANCE_QUERY,
|
||
disableFastLink: !!process.env.DISABLE_FAST_LINK,
|
||
customModels,
|
||
defaultModel,
|
||
allowedWebDevEndpoints,
|
||
};
|
||
};
|