This commit is contained in:
Yifei Zhang 2023-04-17 11:34:33 +08:00 committed by GitHub
parent cc053b148d
commit 76ef5ef9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ export async function requestOpenai(req: NextRequest) {
},
method: req.method,
body: req.body,
duplex: !!req.body,
duplex: !!req.body ? "half" : "",
});
}