Skip to content

Commit 84200a8

Browse files
authored
chore - remove unused toolSelectionIsExclusive fyi @roblourens (microsoft#250860)
1 parent 887037b commit 84200a8

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/vs/workbench/contrib/chat/common/chatAgents.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ export interface IChatAgentRequest {
138138
userSelectedModelId?: string;
139139
userSelectedTools?: Record<string, boolean>;
140140
modeInstructions?: string;
141-
toolSelectionIsExclusive?: boolean;
142141
editedFileEvents?: IChatAgentEditedFileEvent[];
143142
}
144143

src/vs/workbench/contrib/chat/common/chatService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,6 @@ export interface IChatSendRequestOptions {
489489
userSelectedModelId?: string;
490490
userSelectedTools?: Record<string, boolean>;
491491
modeInstructions?: string;
492-
toolSelectionIsExclusive?: boolean;
493492
location?: ChatAgentLocation;
494493
locationData?: IChatLocationData;
495494
parserContext?: IChatParserContext;

src/vs/workbench/contrib/chat/common/chatServiceImpl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,6 @@ export class ChatService extends Disposable implements IChatService {
772772
userSelectedModelId: options?.userSelectedModelId,
773773
userSelectedTools: options?.userSelectedTools,
774774
modeInstructions: options?.modeInstructions,
775-
toolSelectionIsExclusive: options?.toolSelectionIsExclusive,
776775
editedFileEvents: request.editedFileEvents
777776
} satisfies IChatAgentRequest;
778777
};

0 commit comments

Comments
 (0)