From 50bd76ce6f183002ceb8f3929b9c9d057d315dfe Mon Sep 17 00:00:00 2001 From: waleedlatif1 Date: Thu, 7 Aug 2025 11:21:33 -0700 Subject: [PATCH 1/2] fix(gpt-5): remove temp --- apps/sim/providers/models.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/sim/providers/models.ts b/apps/sim/providers/models.ts index 647384c7bf4..348f55a13f3 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, }, }, From 550ef0030536f9a08e36b92eb1a954d308f72f20 Mon Sep 17 00:00:00 2001 From: waleedlatif1 Date: Thu, 7 Aug 2025 11:23:45 -0700 Subject: [PATCH 2/2] decr debounce for sockets --- apps/sim/stores/operation-queue/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/stores/operation-queue/store.ts b/apps/sim/stores/operation-queue/store.ts index 9ddcb2e543a..09af8f248ca 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