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

95 lines
2.5 KiB
TypeScript
Raw Normal View History

import { NextRequest, NextResponse } from "next/server";
2023-05-19 15:53:27 +00:00
export const OPENAI_URL = "api.openai.com";
const DEFAULT_PROTOCOL = "https";
2023-07-14 10:10:42 +00:00
const PROTOCOL = process.env.PROTOCOL || DEFAULT_PROTOCOL;
const BASE_URL = process.env.BASE_URL || OPENAI_URL;
const DISABLE_GPT4 = !!process.env.DISABLE_GPT4;
export async function requestOpenai(req: NextRequest) {
const controller = new AbortController();
2023-05-03 15:08:37 +00:00
const authValue = req.headers.get("Authorization") ?? "";
const openaiPath = `${req.nextUrl.pathname}${req.nextUrl.search}`.replaceAll(
"/api/openai/",
"",
2023-05-03 15:08:37 +00:00
);
2023-04-14 18:50:04 +00:00
let baseUrl = BASE_URL;
if (!baseUrl.startsWith("http")) {
baseUrl = `${PROTOCOL}://${baseUrl}`;
}
console.log("[Proxy] ", openaiPath);
2023-04-14 18:50:04 +00:00
console.log("[Base Url]", baseUrl);
2023-04-19 11:28:33 +00:00
if (process.env.OPENAI_ORG_ID) {
console.log("[Org ID]", process.env.OPENAI_ORG_ID);
}
const timeoutId = setTimeout(() => {
controller.abort();
}, 10 * 60 * 1000);
const fetchUrl = `${baseUrl}/${openaiPath}`;
const fetchOptions: RequestInit = {
headers: {
"Content-Type": "application/json",
2023-07-11 07:46:40 +00:00
"Cache-Control": "no-store",
Authorization: authValue,
...(process.env.OPENAI_ORG_ID && {
"OpenAI-Organization": process.env.OPENAI_ORG_ID,
}),
},
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 (DISABLE_GPT4 && req.body) {
try {
const clonedBody = await req.text();
fetchOptions.body = clonedBody;
const jsonBody = JSON.parse(clonedBody);
if ((jsonBody?.model ?? "").includes("gpt-4")) {
return NextResponse.json(
{
error: true,
message: "you are not allowed to use gpt-4 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);
}
}