copilotAgent.ts ×8

Frontier kind: Code frontier

unlabeled · c_8bb70a104141

9 tests · 51564 LOC · 300 files · introduces 0 tests · 10 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
8 ranges10 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
4944 ranges51564 lines · 300 files · Browse complete extent
All tests (intent)
9 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: 10 introduced LOC across 8 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/node/copilot/copilotAgent.ts 10 introduced LOC · 8 ranges

Open complete file

1321
1322 private _parseModelSelection(raw: string | undefined): ModelSelection | undefined {
1323 > if (!raw) { copilotAgent.ts
1324 > return undefined;
1325 > }
1326
1327 try {
1328 const value: ISerializedModelSelection | string | number | boolean | null = JSON.parse(raw);
1329 > if (value && typeof value === 'object' && typeof value.id === 'string') { copilotAgent.ts
1330 const modelSelection: ModelSelection = { id: value.id };
1331 if (value.config && typeof value.config === 'object') {
1342 return modelSelection;
1343 }
1344 > } catch { copilotAgent.ts
1345 // Older session metadata stored the raw model id as a plain string.
1346 }
1347
1348 return { id: raw };
1349 > } copilotAgent.ts
1350
1351 private _serializeAgentSelection(agent: AgentSelection): string {
1354
1355 private _parseAgentSelection(raw: string | undefined): AgentSelection | undefined {
1356 > if (!raw) { copilotAgent.ts
1357 return undefined;
1358 }
1359 try {
1360 const value: unknown = JSON.parse(raw);
1361 > if (value && typeof value === 'object' && typeof (value as AgentSelection).uri === 'string') { copilotAgent.ts
1362 return { uri: (value as AgentSelection).uri };
1363 }
1364 > } catch { copilotAgent.ts
1365 // Bad / stale metadata — treat as unset.
1366 }
1367 return undefined;
1368 > } copilotAgent.ts
1369
1370 /**