From 75963eb851816e6adea135d5e218a047ac124fc8 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 7 Aug 2025 11:24:10 -0700 Subject: [PATCH] fix(gpt-5): remove temp, decr socket debounce to 25ms (#898) * fix(gpt-5): remove temp * decr debounce for sockets --- apps/sim/providers/models.ts | 8 -------- apps/sim/stores/operation-queue/store.ts | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/sim/providers/models.ts b/apps/sim/providers/models.ts index 647384c7bf..348f55a13f 100644 --- a/apps/sim/providers/models.ts +++ b/apps/sim/providers/models.ts @@ -86,7 +86,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -99,7 +98,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -112,7 +110,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -125,7 +122,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -236,7 +232,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -249,7 +244,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -262,7 +256,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, @@ -275,7 +268,6 @@ export const PROVIDER_DEFINITIONS: Record = { updatedAt: '2025-08-07', }, capabilities: { - temperature: { min: 0, max: 2 }, toolUsageControl: true, }, }, diff --git a/apps/sim/stores/operation-queue/store.ts b/apps/sim/stores/operation-queue/store.ts index 9ddcb2e543..09af8f248c 100644 --- a/apps/sim/stores/operation-queue/store.ts +++ b/apps/sim/stores/operation-queue/store.ts @@ -102,7 +102,7 @@ export const useOperationQueueStore = create((set, get) => })) get().processNextOperation() - }, 50) // 50ms debounce for subblock operations - optimized for collaborative editing + }, 25) // 25ms debounce for subblock operations - optimized for collaborative editing subblockDebounceTimeouts.set(debounceKey, timeoutId) return