Просмотр исходного кода

Merge pull request #2525 from 7lsu/main

typo fix
Yifei Zhang 1 год назад
Родитель
Сommit
6137d551fe
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/client/platforms/openai.ts

+ 1 - 1
app/client/platforms/openai.ts

@@ -178,7 +178,7 @@ export class ChatGPTApi implements LLMApi {
         options.onFinish(message);
       }
     } catch (e) {
-      console.log("[Request] failed to make a chat reqeust", e);
+      console.log("[Request] failed to make a chat request", e);
       options.onError?.(e as Error);
     }
   }