ソースを参照

fix: #2061 RequestInit TypeError

mushan0x0 1 年間 前
コミット
9c05d136f5
1 ファイル変更2 行追加0 行削除
  1. 2 0
      app/api/common.ts

+ 2 - 0
app/api/common.ts

@@ -43,6 +43,8 @@ export async function requestOpenai(req: NextRequest) {
     cache: "no-store",
     method: req.method,
     body: req.body,
+    // @ts-ignore
+    duplex: "half",
     signal: controller.signal,
   };