From a4e504a93e96e12f03da3987648428541c67bf7c Mon Sep 17 00:00:00 2001 From: richardclim <61879224+richardclim@users.noreply.github.com> Date: Sun, 13 Apr 2025 22:13:52 -0400 Subject: [PATCH] Update constant.ts Change timeout for models that are thinking that do not output thinking part (since they do not output thinking part, it is registered by the system as non thinking.) --- app/constant.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constant.ts b/app/constant.ts index c5fa26f14..b9f8ce148 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -109,7 +109,7 @@ export const UNFINISHED_INPUT = (id: string) => "unfinished-input-" + id; export const STORAGE_KEY = "chatgpt-next-web"; -export const REQUEST_TIMEOUT_MS = 60000; +export const REQUEST_TIMEOUT_MS = 300000; export const REQUEST_TIMEOUT_MS_FOR_THINKING = REQUEST_TIMEOUT_MS * 5; export const EXPORT_MESSAGE_CLASS_NAME = "export-markdown";