Push a command button part to this stream. Short-hand for
push(new ChatResponseCommandButtonPart(value, title))
.
A Command that will be executed when the button is clicked.
Push a filetree part to this stream. Short-hand for
push(new ChatResponseFileTreePart(value))
.
File tree data.
The base uri to which this file tree is relative.
Push a markdown part to this stream. Short-hand for
push(new ChatResponseMarkdownPart(value))
.
A markdown string or a string that should be interpreted as markdown. The boolean form of MarkdownString.isTrusted is NOT supported.
Pushes a part to this stream.
A response part, rendered or metadata
The ChatResponseStream is how a participant is able to return content to the chat view. It provides several methods for streaming different types of content which will be rendered in an appropriate way in the chat view. A participant can use the helper method for the type of content it wants to return, or it can instantiate a ChatResponsePart and use the generic ChatResponseStream.push method to return it.
Stubbed