-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathvscode.proposed.chatParticipantAdditions.d.ts
More file actions
684 lines (574 loc) · 19.5 KB
/
vscode.proposed.chatParticipantAdditions.d.ts
File metadata and controls
684 lines (574 loc) · 19.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {
export interface ChatParticipant {
readonly onDidPerformAction: Event<ChatUserActionEvent>;
}
/**
* Now only used for the "intent detection" API below
*/
export interface ChatCommand {
readonly name: string;
readonly description: string;
}
export interface ChatVulnerability {
title: string;
description: string;
// id: string; // Later we will need to be able to link these across multiple content chunks.
}
export class ChatResponseMarkdownWithVulnerabilitiesPart {
value: MarkdownString;
vulnerabilities: ChatVulnerability[];
constructor(value: string | MarkdownString, vulnerabilities: ChatVulnerability[]);
}
export class ChatResponseCodeblockUriPart {
isEdit?: boolean;
value: Uri;
undoStopId?: string;
constructor(value: Uri, isEdit?: boolean, undoStopId?: string);
}
/**
* Displays a {@link Command command} as a button in the chat response.
*/
export interface ChatCommandButton {
command: Command;
}
export interface ChatDocumentContext {
uri: Uri;
version: number;
ranges: Range[];
}
export class ChatResponseTextEditPart {
uri: Uri;
edits: TextEdit[];
isDone?: boolean;
constructor(uri: Uri, done: true);
constructor(uri: Uri, edits: TextEdit | TextEdit[]);
}
export class ChatResponseNotebookEditPart {
uri: Uri;
edits: NotebookEdit[];
isDone?: boolean;
constructor(uri: Uri, done: true);
constructor(uri: Uri, edits: NotebookEdit | NotebookEdit[]);
}
export class ChatResponseConfirmationPart {
title: string;
message: string | MarkdownString;
data: any;
buttons?: string[];
constructor(title: string, message: string | MarkdownString, data: any, buttons?: string[]);
}
export class ChatResponseCodeCitationPart {
value: Uri;
license: string;
snippet: string;
constructor(value: Uri, license: string, snippet: string);
}
export class ChatPrepareToolInvocationPart {
toolName: string;
constructor(toolName: string);
}
export interface ChatTerminalToolInvocationData {
commandLine: {
original: string;
userEdited?: string;
toolEdited?: string;
};
language: string;
}
export class ChatToolInvocationPart {
toolName: string;
toolCallId: string;
isError?: boolean;
invocationMessage?: string | MarkdownString;
originMessage?: string | MarkdownString;
pastTenseMessage?: string | MarkdownString;
isConfirmed?: boolean;
isComplete?: boolean;
toolSpecificData?: ChatTerminalToolInvocationData;
fromSubAgent?: boolean;
presentation?: 'hidden' | 'hiddenAfterComplete' | undefined;
constructor(toolName: string, toolCallId: string, isError?: boolean);
}
/**
* Represents a single file diff entry in a multi diff view.
*/
export interface ChatResponseDiffEntry {
/**
* The original file URI (undefined for new files).
*/
originalUri?: Uri;
/**
* The modified file URI (undefined for deleted files).
*/
modifiedUri?: Uri;
/**
* Optional URI to navigate to when clicking on the file.
*/
goToFileUri?: Uri;
/**
* Added data (e.g. line numbers) to show in the UI
*/
added?: number;
/**
* Removed data (e.g. line numbers) to show in the UI
*/
removed?: number;
}
/**
* Represents a part of a chat response that shows multiple file diffs.
*/
export class ChatResponseMultiDiffPart {
/**
* Array of file diff entries to display.
*/
value: ChatResponseDiffEntry[];
/**
* The title for the multi diff editor.
*/
title: string;
/**
* Whether the multi diff editor should be read-only.
* When true, users cannot open individual files or interact with file navigation.
*/
readOnly?: boolean;
/**
* Create a new ChatResponseMultiDiffPart.
* @param value Array of file diff entries.
* @param title The title for the multi diff editor.
* @param readOnly Optional flag to make the multi diff editor read-only.
*/
constructor(value: ChatResponseDiffEntry[], title: string, readOnly?: boolean);
}
export class ChatResponseExternalEditPart {
uris: Uri[];
callback: () => Thenable<unknown>;
applied: Thenable<string>;
constructor(uris: Uri[], callback: () => Thenable<unknown>);
}
export type ExtendedChatResponsePart = ChatResponsePart | ChatResponseTextEditPart | ChatResponseNotebookEditPart | ChatResponseConfirmationPart | ChatResponseCodeCitationPart | ChatResponseReferencePart2 | ChatResponseMovePart | ChatResponseExtensionsPart | ChatResponsePullRequestPart | ChatPrepareToolInvocationPart | ChatToolInvocationPart | ChatResponseMultiDiffPart | ChatResponseThinkingProgressPart | ChatResponseExternalEditPart;
export class ChatResponseWarningPart {
value: MarkdownString;
constructor(value: string | MarkdownString);
}
export class ChatResponseProgressPart2 extends ChatResponseProgressPart {
value: string;
task?: (progress: Progress<ChatResponseWarningPart | ChatResponseReferencePart>) => Thenable<string | void>;
constructor(value: string, task?: (progress: Progress<ChatResponseWarningPart | ChatResponseReferencePart>) => Thenable<string | void>);
}
/**
* A specialized progress part for displaying thinking/reasoning steps.
*/
export class ChatResponseThinkingProgressPart {
value: string | string[];
id?: string;
metadata?: { readonly [key: string]: any };
task?: (progress: Progress<LanguageModelThinkingPart>) => Thenable<string | void>;
/**
* Creates a new thinking progress part.
* @param value An initial progress message
* @param task A task that will emit thinking parts during its execution
*/
constructor(value: string | string[], id?: string, metadata?: { readonly [key: string]: any }, task?: (progress: Progress<LanguageModelThinkingPart>) => Thenable<string | void>);
}
export class ChatResponseReferencePart2 {
/**
* The reference target.
*/
value: Uri | Location | { variableName: string; value?: Uri | Location } | string;
/**
* The icon for the reference.
*/
iconPath?: Uri | ThemeIcon | {
/**
* The icon path for the light theme.
*/
light: Uri;
/**
* The icon path for the dark theme.
*/
dark: Uri;
};
options?: { status?: { description: string; kind: ChatResponseReferencePartStatusKind } };
/**
* Create a new ChatResponseReferencePart.
* @param value A uri or location
* @param iconPath Icon for the reference shown in UI
*/
constructor(value: Uri | Location | { variableName: string; value?: Uri | Location } | string, iconPath?: Uri | ThemeIcon | {
/**
* The icon path for the light theme.
*/
light: Uri;
/**
* The icon path for the dark theme.
*/
dark: Uri;
}, options?: { status?: { description: string; kind: ChatResponseReferencePartStatusKind } });
}
export class ChatResponseMovePart {
readonly uri: Uri;
readonly range: Range;
constructor(uri: Uri, range: Range);
}
export interface ChatResponseAnchorPart {
/**
* The target of this anchor.
*
* If this is a {@linkcode Uri} or {@linkcode Location}, this is rendered as a normal link.
*
* If this is a {@linkcode SymbolInformation}, this is rendered as a symbol link.
*
* TODO mjbvz: Should this be a full `SymbolInformation`? Or just the parts we need?
* TODO mjbvz: Should we allow a `SymbolInformation` without a location? For example, until `resolve` completes?
*/
value2: Uri | Location | SymbolInformation;
/**
* Optional method which fills in the details of the anchor.
*
* THis is currently only implemented for symbol links.
*/
resolve?(token: CancellationToken): Thenable<void>;
}
export class ChatResponseExtensionsPart {
readonly extensions: string[];
constructor(extensions: string[]);
}
export class ChatResponsePullRequestPart {
readonly uri: Uri;
readonly linkTag: string;
readonly title: string;
readonly description: string;
readonly author: string;
constructor(uri: Uri, title: string, description: string, author: string, linkTag: string);
}
export interface ChatResponseStream {
/**
* Push a progress part to this stream. Short-hand for
* `push(new ChatResponseProgressPart(value))`.
*
* @param value A progress message
* @param task If provided, a task to run while the progress is displayed. When the Thenable resolves, the progress will be marked complete in the UI, and the progress message will be updated to the resolved string if one is specified.
* @returns This stream.
*/
progress(value: string, task?: (progress: Progress<ChatResponseWarningPart | ChatResponseReferencePart>) => Thenable<string | void>): void;
thinkingProgress(thinkingDelta: ThinkingDelta): void;
textEdit(target: Uri, edits: TextEdit | TextEdit[]): void;
textEdit(target: Uri, isDone: true): void;
notebookEdit(target: Uri, edits: NotebookEdit | NotebookEdit[]): void;
notebookEdit(target: Uri, isDone: true): void;
/**
* Makes an external edit to one or more resources. Changes to the
* resources made within the `callback` and before it resolves will be
* tracked as agent edits. This can be used to track edits made from
* external tools that don't generate simple {@link textEdit textEdits}.
*/
externalEdit(target: Uri | Uri[], callback: () => Thenable<unknown>): Thenable<string>;
markdownWithVulnerabilities(value: string | MarkdownString, vulnerabilities: ChatVulnerability[]): void;
codeblockUri(uri: Uri, isEdit?: boolean): void;
push(part: ChatResponsePart | ChatResponseTextEditPart | ChatResponseWarningPart | ChatResponseProgressPart2): void;
/**
* Show an inline message in the chat view asking the user to confirm an action.
* Multiple confirmations may be shown per response. The UI might show "Accept All" / "Reject All" actions.
* @param title The title of the confirmation entry
* @param message An extra message to display to the user
* @param data An arbitrary JSON-stringifiable object that will be included in the ChatRequest when
* the confirmation is accepted or rejected
* TODO@API should this be MarkdownString?
* TODO@API should actually be a more generic function that takes an array of buttons
*/
confirmation(title: string, message: string | MarkdownString, data: any, buttons?: string[]): void;
/**
* Push a warning to this stream. Short-hand for
* `push(new ChatResponseWarningPart(message))`.
*
* @param message A warning message
* @returns This stream.
*/
warning(message: string | MarkdownString): void;
reference(value: Uri | Location | { variableName: string; value?: Uri | Location }, iconPath?: Uri | ThemeIcon | { light: Uri; dark: Uri }): void;
reference2(value: Uri | Location | string | { variableName: string; value?: Uri | Location }, iconPath?: Uri | ThemeIcon | { light: Uri; dark: Uri }, options?: { status?: { description: string; kind: ChatResponseReferencePartStatusKind } }): void;
codeCitation(value: Uri, license: string, snippet: string): void;
prepareToolInvocation(toolName: string): void;
push(part: ExtendedChatResponsePart): void;
clearToPreviousToolInvocation(reason: ChatResponseClearToPreviousToolInvocationReason): void;
}
export enum ChatResponseReferencePartStatusKind {
Complete = 1,
Partial = 2,
Omitted = 3
}
export type ThinkingDelta = {
text?: string | string[];
id: string;
metadata?: { readonly [key: string]: any };
} | {
text?: string | string[];
id?: string;
metadata: { readonly [key: string]: any };
} |
{
text: string | string[];
id?: string;
metadata?: { readonly [key: string]: any };
};
export enum ChatResponseClearToPreviousToolInvocationReason {
NoReason = 0,
FilteredContentRetry = 1,
CopyrightContentRetry = 2,
}
/**
* Does this piggy-back on the existing ChatRequest, or is it a different type of request entirely?
* Does it show up in history?
*/
export interface ChatRequest {
/**
* The `data` for any confirmations that were accepted
*/
acceptedConfirmationData?: any[];
/**
* The `data` for any confirmations that were rejected
*/
rejectedConfirmationData?: any[];
}
export interface ChatRequest {
/**
* A map of all tools that should (`true`) and should not (`false`) be used in this request.
*/
readonly tools: Map<string, boolean>;
}
export namespace lm {
/**
* Fired when the set of tools on a chat request changes.
*/
export const onDidChangeChatRequestTools: Event<ChatRequest>;
}
export class LanguageModelToolExtensionSource {
/**
* ID of the extension that published the tool.
*/
readonly id: string;
/**
* Label of the extension that published the tool.
*/
readonly label: string;
private constructor(id: string, label: string);
}
export class LanguageModelToolMCPSource {
/**
* Editor-configured label of the MCP server that published the tool.
*/
readonly label: string;
/**
* Server-defined name of the MCP server.
*/
readonly name: string;
/**
* Server-defined instructions for MCP tool use.
*/
readonly instructions?: string;
private constructor(label: string, name: string, instructions?: string);
}
export interface LanguageModelToolInformation {
source: LanguageModelToolExtensionSource | LanguageModelToolMCPSource | undefined;
}
// TODO@API fit this into the stream
export interface ChatUsedContext {
documents: ChatDocumentContext[];
}
export interface ChatParticipant {
/**
* Provide a set of variables that can only be used with this participant.
*/
participantVariableProvider?: { provider: ChatParticipantCompletionItemProvider; triggerCharacters: string[] };
/**
* Event that fires when a request is paused or unpaused.
* Chat requests are initially unpaused in the {@link requestHandler}.
*/
readonly onDidChangePauseState: Event<ChatParticipantPauseStateEvent>;
}
export interface ChatParticipantPauseStateEvent {
request: ChatRequest;
isPaused: boolean;
}
export interface ChatParticipantCompletionItemProvider {
provideCompletionItems(query: string, token: CancellationToken): ProviderResult<ChatCompletionItem[]>;
}
export class ChatCompletionItem {
id: string;
label: string | CompletionItemLabel;
values: ChatVariableValue[];
fullName?: string;
icon?: ThemeIcon;
insertText?: string;
detail?: string;
documentation?: string | MarkdownString;
command?: Command;
constructor(id: string, label: string | CompletionItemLabel, values: ChatVariableValue[]);
}
export type ChatExtendedRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatResponseStream, token: CancellationToken) => ProviderResult<ChatResult | void>;
export interface ChatResult {
nextQuestion?: {
prompt: string;
participant?: string;
command?: string;
};
/**
* An optional detail string that will be rendered at the end of the response in certain UI contexts.
*/
details?: string;
}
export namespace chat {
/**
* Create a chat participant with the extended progress type
*/
export function createChatParticipant(id: string, handler: ChatExtendedRequestHandler): ChatParticipant;
}
/*
* User action events
*/
export enum ChatCopyKind {
// Keyboard shortcut or context menu
Action = 1,
Toolbar = 2
}
export interface ChatCopyAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'copy';
codeBlockIndex: number;
copyKind: ChatCopyKind;
copiedCharacters: number;
totalCharacters: number;
copiedText: string;
totalLines: number;
copiedLines: number;
modelId: string;
languageId?: string;
}
export interface ChatInsertAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'insert';
codeBlockIndex: number;
totalCharacters: number;
totalLines: number;
languageId?: string;
modelId: string;
newFile?: boolean;
}
export interface ChatApplyAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'apply';
codeBlockIndex: number;
totalCharacters: number;
totalLines: number;
languageId?: string;
modelId: string;
newFile?: boolean;
codeMapper?: string;
}
export interface ChatTerminalAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'runInTerminal';
codeBlockIndex: number;
languageId?: string;
}
export interface ChatCommandAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'command';
commandButton: ChatCommandButton;
}
export interface ChatFollowupAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'followUp';
followup: ChatFollowup;
}
export interface ChatBugReportAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'bug';
}
export interface ChatEditorAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'editor';
accepted: boolean;
}
export interface ChatEditingSessionAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'chatEditingSessionAction';
uri: Uri;
hasRemainingEdits: boolean;
outcome: ChatEditingSessionActionOutcome;
}
export interface ChatEditingHunkAction {
// eslint-disable-next-line local/vscode-dts-string-type-literals
kind: 'chatEditingHunkAction';
uri: Uri;
lineCount: number;
linesAdded: number;
linesRemoved: number;
outcome: ChatEditingSessionActionOutcome;
hasRemainingEdits: boolean;
}
export enum ChatEditingSessionActionOutcome {
Accepted = 1,
Rejected = 2,
Saved = 3
}
export interface ChatUserActionEvent {
readonly result: ChatResult;
readonly action: ChatCopyAction | ChatInsertAction | ChatApplyAction | ChatTerminalAction | ChatCommandAction | ChatFollowupAction | ChatBugReportAction | ChatEditorAction | ChatEditingSessionAction | ChatEditingHunkAction;
}
export interface ChatPromptReference {
/**
* TODO Needed for now to drive the variableName-type reference, but probably both of these should go away in the future.
*/
readonly name: string;
/**
* The list of tools were referenced in the value of the reference
*/
readonly toolReferences?: readonly ChatLanguageModelToolReference[];
}
export interface ChatResultFeedback {
readonly unhelpfulReason?: string;
}
export namespace lm {
export function fileIsIgnored(uri: Uri, token?: CancellationToken): Thenable<boolean>;
}
export interface ChatVariableValue {
/**
* The detail level of this chat variable value. If possible, variable resolvers should try to offer shorter values that will consume fewer tokens in an LLM prompt.
*/
level: ChatVariableLevel;
/**
* The variable's value, which can be included in an LLM prompt as-is, or the chat participant may decide to read the value and do something else with it.
*/
value: string | Uri;
/**
* A description of this value, which could be provided to the LLM as a hint.
*/
description?: string;
}
/**
* The detail level of this chat variable value.
*/
export enum ChatVariableLevel {
Short = 1,
Medium = 2,
Full = 3
}
export interface LanguageModelToolInvocationOptions<T> {
model?: LanguageModelChat;
}
export interface ChatRequest {
readonly modeInstructions?: string;
readonly modeInstructions2?: ChatRequestModeInstructions;
}
export interface ChatRequestModeInstructions {
readonly name: string;
readonly content: string;
readonly toolReferences?: readonly ChatLanguageModelToolReference[];
readonly metadata?: Record<string, boolean | string | number>;
}
}