Skip to content

Commit 75963eb

Browse files
authored
fix(gpt-5): remove temp, decr socket debounce to 25ms (#898)
* fix(gpt-5): remove temp * decr debounce for sockets
1 parent ed7d7a7 commit 75963eb

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

apps/sim/providers/models.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
8686
updatedAt: '2025-08-07',
8787
},
8888
capabilities: {
89-
temperature: { min: 0, max: 2 },
9089
toolUsageControl: true,
9190
},
9291
},
@@ -99,7 +98,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
9998
updatedAt: '2025-08-07',
10099
},
101100
capabilities: {
102-
temperature: { min: 0, max: 2 },
103101
toolUsageControl: true,
104102
},
105103
},
@@ -112,7 +110,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
112110
updatedAt: '2025-08-07',
113111
},
114112
capabilities: {
115-
temperature: { min: 0, max: 2 },
116113
toolUsageControl: true,
117114
},
118115
},
@@ -125,7 +122,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
125122
updatedAt: '2025-08-07',
126123
},
127124
capabilities: {
128-
temperature: { min: 0, max: 2 },
129125
toolUsageControl: true,
130126
},
131127
},
@@ -236,7 +232,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
236232
updatedAt: '2025-08-07',
237233
},
238234
capabilities: {
239-
temperature: { min: 0, max: 2 },
240235
toolUsageControl: true,
241236
},
242237
},
@@ -249,7 +244,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
249244
updatedAt: '2025-08-07',
250245
},
251246
capabilities: {
252-
temperature: { min: 0, max: 2 },
253247
toolUsageControl: true,
254248
},
255249
},
@@ -262,7 +256,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
262256
updatedAt: '2025-08-07',
263257
},
264258
capabilities: {
265-
temperature: { min: 0, max: 2 },
266259
toolUsageControl: true,
267260
},
268261
},
@@ -275,7 +268,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
275268
updatedAt: '2025-08-07',
276269
},
277270
capabilities: {
278-
temperature: { min: 0, max: 2 },
279271
toolUsageControl: true,
280272
},
281273
},

apps/sim/stores/operation-queue/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export const useOperationQueueStore = create<OperationQueueState>((set, get) =>
102102
}))
103103

104104
get().processNextOperation()
105-
}, 50) // 50ms debounce for subblock operations - optimized for collaborative editing
105+
}, 25) // 25ms debounce for subblock operations - optimized for collaborative editing
106106

107107
subblockDebounceTimeouts.set(debounceKey, timeoutId)
108108
return

0 commit comments

Comments
 (0)