fix: #2594 trim the /

This commit is contained in:
Yifei Zhang 2023-08-10 10:47:06 +08:00 committed by GitHub
parent 9834a67cbd
commit 0b7de6f7b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,10 @@ export async function requestOpenai(req: NextRequest) {
baseUrl = `${PROTOCOL}://${baseUrl}`;
}
if (baseUrl.endsWith('/')) {
baseUrl = baseUrl.slice(0, -1);
}
console.log("[Proxy] ", openaiPath);
console.log("[Base Url]", baseUrl);