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.)
This commit is contained in:
richardclim 2025-04-13 22:13:52 -04:00
parent 9b584e7846
commit a4e504a93e

View File

@ -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";