copilotAgentSession.ts ×4

Frontier kind: Code frontier

unlabeled · c_960d2000bd1a

6 tests · 43790 LOC · 243 files · introduces 0 tests · 6 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges6 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
4015 ranges43790 lines · 243 files · Browse complete extent
All tests (intent)
6 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: 6 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/node/copilot/copilotAgentSession.ts 6 introduced LOC · 4 ranges

Open complete file

996 */
997 emitInitialMarkdown(content: string): void {
998 > this._emitMarkdownDelta(content); copilotAgentSession.ts
999 > }
1000
1001 /**
1517 const slashCommand = parseLeadingSlashCommand(prompt);
1518 if (slashCommand?.command === 'compact') {
1519 > try { copilotAgentSession.ts
1520 > const result = await this._wrapper.session.rpc.history.compact();
1521 // Compaction reduces the number of tokens currently occupying the context window. Report the
1522 // new occupancy so the context-usage widget refreshes immediately. Emitted before
1523 // `_completeActiveTurn` since the reducer drops usage for a non-active turn.
1524 const usedTokens = result.contextWindow?.currentTokens;
1525 > if (typeof usedTokens === 'number') { copilotAgentSession.ts
1526 this._emitAction({
1527 type: ActionType.ChatUsage,
1531 }
1532 this.emitInitialMarkdown(localize('copilotAgent.compactionCompleted', "Compaction completed"));
1533 > } catch (err) { copilotAgentSession.ts
1534 if (getErrorMessage(err).toLowerCase().includes('nothing to compact')) {
1535 this.emitInitialMarkdown(localize('copilotAgent.compactionCompleted', "Compaction completed"));