From 6d69494e0858d5a36a986253127d69e96ac9600c Mon Sep 17 00:00:00 2001 From: LaskyJ Date: Thu, 27 Mar 2025 12:52:25 -0500 Subject: [PATCH] Update utils.ts --- app/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/utils.ts b/app/utils.ts index 6183e03b0..fed0c953e 100644 --- a/app/utils.ts +++ b/app/utils.ts @@ -304,7 +304,8 @@ export function getTimeoutMSByModel(model: string) { model.startsWith("o1") || model.startsWith("o3") || model.includes("deepseek-r") || - model.includes("-thinking") + model.includes("-thinking") || + model.includes("pro") ) return REQUEST_TIMEOUT_MS_FOR_THINKING; return REQUEST_TIMEOUT_MS;