common.ts 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import { NextRequest, NextResponse } from "next/server";
  2. import { getServerSideConfig } from "../config/server";
  3. import { DEFAULT_MODELS, OPENAI_BASE_URL } from "../constant";
  4. import { collectModelTable } from "../utils/model";
  5. import { makeAzurePath } from "../azure";
  6. const serverConfig = getServerSideConfig();
  7. export async function requestOpenai(req: NextRequest) {
  8. const controller = new AbortController();
  9. const authValue = req.headers.get("Authorization") ?? "";
  10. const authHeaderName = serverConfig.isAzure ? "api-key" : "Authorization";
  11. let path = `${req.nextUrl.pathname}${req.nextUrl.search}`.replaceAll(
  12. "/api/openai/",
  13. "",
  14. );
  15. let baseUrl =
  16. serverConfig.azureUrl || serverConfig.baseUrl || OPENAI_BASE_URL;
  17. if (!baseUrl.startsWith("http")) {
  18. baseUrl = `https://${baseUrl}`;
  19. }
  20. if (baseUrl.endsWith("/")) {
  21. baseUrl = baseUrl.slice(0, -1);
  22. }
  23. console.log("[Proxy] ", path);
  24. console.log("[Base Url]", baseUrl);
  25. // this fix [Org ID] undefined in server side if not using custom point
  26. if (serverConfig.openaiOrgId) {
  27. console.log("[Org ID]", serverConfig.openaiOrgId);
  28. }
  29. const timeoutId = setTimeout(
  30. () => {
  31. controller.abort();
  32. },
  33. 10 * 60 * 1000,
  34. );
  35. if (serverConfig.isAzure) {
  36. if (!serverConfig.azureApiVersion) {
  37. return NextResponse.json({
  38. error: true,
  39. message: `missing AZURE_API_VERSION in server env vars`,
  40. });
  41. }
  42. path = makeAzurePath(path, serverConfig.azureApiVersion);
  43. }
  44. const fetchUrl = `${baseUrl}/${path}`;
  45. const fetchOptions: RequestInit = {
  46. headers: {
  47. "Content-Type": "application/json",
  48. "Cache-Control": "no-store",
  49. [authHeaderName]: authValue,
  50. ...(serverConfig.openaiOrgId && {
  51. "OpenAI-Organization": serverConfig.openaiOrgId,
  52. }),
  53. },
  54. method: req.method,
  55. body: req.body,
  56. // to fix #2485: https://stackoverflow.com/questions/55920957/cloudflare-worker-typeerror-one-time-use-body
  57. redirect: "manual",
  58. // @ts-ignore
  59. duplex: "half",
  60. signal: controller.signal,
  61. };
  62. // #1815 try to refuse gpt4 request
  63. if (serverConfig.customModels && req.body) {
  64. try {
  65. const modelTable = collectModelTable(
  66. DEFAULT_MODELS,
  67. serverConfig.customModels,
  68. );
  69. const clonedBody = await req.text();
  70. fetchOptions.body = clonedBody;
  71. const jsonBody = JSON.parse(clonedBody) as { model?: string };
  72. // not undefined and is false
  73. if (modelTable[jsonBody?.model ?? ""].available === false) {
  74. return NextResponse.json(
  75. {
  76. error: true,
  77. message: `you are not allowed to use ${jsonBody?.model} model`,
  78. },
  79. {
  80. status: 403,
  81. },
  82. );
  83. }
  84. } catch (e) {
  85. console.error("[OpenAI] gpt4 filter", e);
  86. }
  87. }
  88. try {
  89. const res = await fetch(fetchUrl, fetchOptions);
  90. // to prevent browser prompt for credentials
  91. const newHeaders = new Headers(res.headers);
  92. newHeaders.delete("www-authenticate");
  93. // to disable nginx buffering
  94. newHeaders.set("X-Accel-Buffering", "no");
  95. return new Response(res.body, {
  96. status: res.status,
  97. statusText: res.statusText,
  98. headers: newHeaders,
  99. });
  100. } finally {
  101. clearTimeout(timeoutId);
  102. }
  103. }