Skip to content

Commit 451333c

Browse files
authored
Small chat API updates (microsoft#205880)
* Fix microsoft#205812 * Fix microsoft#205810 * Fix microsoft#205809
1 parent e7a3ef8 commit 451333c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vscode-dts/vscode.proposed.chatParticipant.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ declare module 'vscode' {
8383
message: string;
8484

8585
/**
86-
* If partial markdown content was sent over the `progress` callback before the response terminated, then this flag
86+
* If partial markdown content was sent over the {@link ChatRequestHandler handler}'s response stream before the response terminated, then this flag
8787
* can be set to true and it will be rendered with incomplete markdown features patched up.
8888
*
8989
* For example, if the response terminated after sending part of a triple-backtick code block, then the editor will
@@ -281,7 +281,7 @@ declare module 'vscode' {
281281
followupProvider?: ChatFollowupProvider;
282282

283283
/**
284-
* When the user clicks this participant in `/help`, this text will be submitted to this command
284+
* When the user clicks this participant in `/help`, this text will be submitted to this participant.
285285
*/
286286
sampleRequest?: string;
287287

@@ -408,7 +408,7 @@ declare module 'vscode' {
408408
* Push a progress part to this stream. Short-hand for
409409
* `push(new ChatResponseProgressPart(value))`.
410410
*
411-
* @param value
411+
* @param value A progress message
412412
* @returns This stream.
413413
*/
414414
progress(value: string): ChatResponseStream;

0 commit comments

Comments
 (0)