ChatGPT-Next-Web/app/api/common.ts

121 lines
3.3 KiB
TypeScript
Raw Normal View History

import { NextRequest, NextResponse } from "next/server";
import { getServerSideConfig } from "../config/server";
import { DEFAULT_MODELS, OPENAI_BASE_URL } from "../constant";
2023-11-09 18:43:30 +00:00
import { collectModelTable } from "../utils/model";
import { makeAzurePath } from "../azure";
const serverConfig = getServerSideConfig();
export async function requestOpenai(req: NextRequest) {
const controller = new AbortController();
2023-11-09 18:43:30 +00:00
2023-05-03 15:08:37 +00:00
const authValue = req.headers.get("Authorization") ?? "";
2023-11-09 18:43:30 +00:00
const authHeaderName = serverConfig.isAzure ? "api-key" : "Authorization";
let path = `${req.nextUrl.pathname}${req.nextUrl.search}`.replaceAll(
2023-05-03 15:08:37 +00:00
"/api/openai/",
"",
2023-05-03 15:08:37 +00:00
);
2023-11-09 18:43:30 +00:00
let baseUrl =
2023-11-10 07:44:07 +00:00
serverConfig.azureUrl || serverConfig.baseUrl || OPENAI_BASE_URL;
2023-04-14 18:50:04 +00:00
if (!baseUrl.startsWith("http")) {
baseUrl = `https://${baseUrl}`;
2023-04-14 18:50:04 +00:00
}
2023-11-07 23:09:52 +00:00
if (baseUrl.endsWith("/")) {
2023-08-10 02:47:06 +00:00
baseUrl = baseUrl.slice(0, -1);
}
2023-11-09 18:43:30 +00:00
console.log("[Proxy] ", path);
2023-04-14 18:50:04 +00:00
console.log("[Base Url]", baseUrl);
// this fix [Org ID] undefined in server side if not using custom point
if (serverConfig.openaiOrgId !== undefined) {
console.log("[Org ID]", serverConfig.openaiOrgId);
}
2023-04-19 11:28:33 +00:00
2023-11-07 23:09:52 +00:00
const timeoutId = setTimeout(
() => {
controller.abort();
},
10 * 60 * 1000,
);
2023-11-09 18:43:30 +00:00
if (serverConfig.isAzure) {
if (!serverConfig.azureApiVersion) {
return NextResponse.json({
error: true,
message: `missing AZURE_API_VERSION in server env vars`,
});
}
path = makeAzurePath(path, serverConfig.azureApiVersion);
}
const fetchUrl = `${baseUrl}/${path}`;
const fetchOptions: RequestInit = {
headers: {
"Content-Type": "application/json",
2023-07-11 07:46:40 +00:00
"Cache-Control": "no-store",
2023-11-09 18:43:30 +00:00
[authHeaderName]: authValue,
...(serverConfig.openaiOrgId && {
"OpenAI-Organization": serverConfig.openaiOrgId,
}),
},
method: req.method,
body: req.body,
2023-08-08 13:36:37 +00:00
// to fix #2485: https://stackoverflow.com/questions/55920957/cloudflare-worker-typeerror-one-time-use-body
redirect: "manual",
2023-06-20 03:57:31 +00:00
// @ts-ignore
duplex: "half",
signal: controller.signal,
};
// #1815 try to refuse gpt4 request
if (serverConfig.customModels && req.body) {
try {
const modelTable = collectModelTable(
DEFAULT_MODELS,
serverConfig.customModels,
);
const clonedBody = await req.text();
fetchOptions.body = clonedBody;
const jsonBody = JSON.parse(clonedBody) as { model?: string };
// not undefined and is false
2023-11-11 16:46:21 +00:00
if (modelTable[jsonBody?.model ?? ""].available === false) {
return NextResponse.json(
{
error: true,
message: `you are not allowed to use ${jsonBody?.model} model`,
},
{
status: 403,
},
);
}
} catch (e) {
console.error("[OpenAI] gpt4 filter", e);
}
}
try {
const res = await fetch(fetchUrl, fetchOptions);
2023-06-08 15:49:06 +00:00
// to prevent browser prompt for credentials
const newHeaders = new Headers(res.headers);
newHeaders.delete("www-authenticate");
2023-07-10 02:09:19 +00:00
// to disable nginx buffering
2023-06-08 15:49:06 +00:00
newHeaders.set("X-Accel-Buffering", "no");
2023-06-08 15:49:06 +00:00
return new Response(res.body, {
status: res.status,
statusText: res.statusText,
headers: newHeaders,
});
} finally {
clearTimeout(timeoutId);
}
}