Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(gpt-5): remove temp, decr socket debounce to 25ms (#898)
* fix(gpt-5): remove temp

* decr debounce for sockets
  • Loading branch information
waleedlatif1 authored Aug 7, 2025
commit 75963eb851816e6adea135d5e218a047ac124fc8
8 changes: 0 additions & 8 deletions apps/sim/providers/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -99,7 +98,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -112,7 +110,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -125,7 +122,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand Down Expand Up @@ -236,7 +232,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -249,7 +244,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -262,7 +256,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand All @@ -275,7 +268,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/stores/operation-queue/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const useOperationQueueStore = create<OperationQueueState>((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
Expand Down