fix(gpt-5): remove temp, decr socket debounce to 25ms (#898)

* fix(gpt-5): remove temp

* decr debounce for sockets
This commit is contained in:
Waleed Latif
2025-08-07 11:24:10 -07:00
committed by GitHub
parent ed7d7a7101
commit 75963eb851
2 changed files with 1 additions and 9 deletions

View File

@@ -86,7 +86,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -99,7 +98,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -112,7 +110,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -125,7 +122,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -236,7 +232,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -249,7 +244,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -262,7 +256,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},
@@ -275,7 +268,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
updatedAt: '2025-08-07',
},
capabilities: {
temperature: { min: 0, max: 2 },
toolUsageControl: true,
},
},

View File

@@ -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