This commit is contained in:
GH Action - Upstream Sync 2023-05-08 00:57:14 +00:00
commit b3f38f3264
2 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export async function requestOpenai(req: NextRequest) {
} }
if (!authValue || !authValue.startsWith("Bearer sk-")) { if (!authValue || !authValue.startsWith("Bearer sk-")) {
console.error("[OpenAI Request] invlid api key provided", authValue); console.error("[OpenAI Request] invalid api key provided", authValue);
} }
return fetch(`${baseUrl}/${openaiPath}`, { return fetch(`${baseUrl}/${openaiPath}`, {

View File

@ -335,6 +335,7 @@
padding: 20px; padding: 20px;
padding-bottom: 40px; padding-bottom: 40px;
position: relative; position: relative;
overscroll-behavior: none;
} }
.chat-body-title { .chat-body-title {