chatExternalPathConfirmation.ts ×5

Frontier kind: Code frontier

unlabeled · c_0f86f6a9fa01

8 tests · 17010 LOC · 92 files · introduces 0 tests · 26 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
5 ranges26 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
2264 ranges17010 lines · 92 files · Browse complete extent
All tests (intent)
8 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 26 introduced LOC across 5 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/workbench/contrib/chat/common/tools/builtinTools/chatExternalPathConfirmation.ts 26 introduced LOC · 5 ranges

Open complete file

136
137 getPreConfirmActions(ref: ILanguageModelToolConfirmationRef): ILanguageModelToolConfirmationActions[] {
138 > const pathInfo = this._getPathInfo(ref); chatExternalPathConfirmation.ts
139 > if (!pathInfo || !ref.chatSessionResource) {
140 return [];
141 }
143 > // Parse the path to a URI
144 > let pathUri: URI;
145 > try {
146 > pathUri = URI.file(pathInfo.path);
147 > } catch {
148 return [];
149 }
151 > // For directories, use the path itself; for files, use the parent directory
152 > const folderUri = pathInfo.isDirectory ? pathUri : dirname(pathUri);
153 > const sessionResource = ref.chatSessionResource;
154 >
155 > const actions: ILanguageModelToolConfirmationActions[] = [
156 > {
157 > label: localize('allowFolderSession', 'Allow this folder in this session'),
158 > detail: localize('allowFolderSessionDetail', 'Allow reading files from this folder without further confirmation in this chat session'),
159 > select: async () => {
160 let folders = this._sessionFolderAllowlist.get(sessionResource);
161 if (!folders) {
166 return true;
167 }
169 > ];
170 >
171 > // If a git root finder is available, offer to allow the entire repository
172 > if (this._findGitRoot) {
173 const findGitRoot = this._findGitRoot;
174 const gitRootCache = this._gitRootCache;
214 }
215 }
217 > return actions;
218 > }
219
220 getManageActions(): ILanguageModelToolConfirmationContributionQuickTreeItem[] {