File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed
src/vs/workbench/contrib/chat/common Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,6 @@ export interface IChatAgentRequest {
138
138
userSelectedModelId ?: string ;
139
139
userSelectedTools ?: Record < string , boolean > ;
140
140
modeInstructions ?: string ;
141
- toolSelectionIsExclusive ?: boolean ;
142
141
editedFileEvents ?: IChatAgentEditedFileEvent [ ] ;
143
142
}
144
143
Original file line number Diff line number Diff line change @@ -489,7 +489,6 @@ export interface IChatSendRequestOptions {
489
489
userSelectedModelId ?: string ;
490
490
userSelectedTools ?: Record < string , boolean > ;
491
491
modeInstructions ?: string ;
492
- toolSelectionIsExclusive ?: boolean ;
493
492
location ?: ChatAgentLocation ;
494
493
locationData ?: IChatLocationData ;
495
494
parserContext ?: IChatParserContext ;
Original file line number Diff line number Diff line change @@ -772,7 +772,6 @@ export class ChatService extends Disposable implements IChatService {
772
772
userSelectedModelId : options ?. userSelectedModelId ,
773
773
userSelectedTools : options ?. userSelectedTools ,
774
774
modeInstructions : options ?. modeInstructions ,
775
- toolSelectionIsExclusive : options ?. toolSelectionIsExclusive ,
776
775
editedFileEvents : request . editedFileEvents
777
776
} satisfies IChatAgentRequest ;
778
777
} ;
You can’t perform that action at this time.
0 commit comments