You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'User input ID mismatch - rejecting tool call request',
@@ -831,9 +827,7 @@ export class Client {
831
827
{
832
828
type: 'json',
833
829
value: {
834
-
errorMessage: ASYNC_AGENTS_ENABLED
835
-
? `User input ID mismatch: expected one of ${this.nonCancelledUserInputIds.join(', ')}, got ${userInputId}. That user input id might have been cancelled by the user.`
836
-
: `User input ID mismatch: expected ${this.userInputId}, got ${userInputId}. Most likely cancelled by user.`,
830
+
errorMessage: `User input ID mismatch: expected ${this.userInputId}, got ${userInputId}. Most likely cancelled by user.`,
837
831
},
838
832
},
839
833
],
@@ -1131,9 +1125,6 @@ export class Client {
1131
1125
loggerContext.clientRequestId=userInputId
1132
1126
conststartTime=Date.now()// Capture start time
1133
1127
1134
-
// Add to non-cancelled list
1135
-
this.nonCancelledUserInputIds.push(userInputId)
1136
-
1137
1128
constf=this.subscribeToResponse.bind(this)
1138
1129
1139
1130
const{ responsePromise, stopResponse }=f(
@@ -1319,11 +1310,6 @@ export class Client {
1319
1310
return
1320
1311
}
1321
1312
1322
-
// Remove the cancelled input ID from the non-cancelled list
0 commit comments