Skip to content
Merged

0.154.0 #8820

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.154.0

### Changes

- Back off polling for pull request updates when no changes are found, reducing unnecessary requests.

## 0.152.0

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"treeItemMarkdownLabel",
"treeViewMarkdownMessage"
],
"version": "0.152.0",
"version": "0.154.0",
"publisher": "GitHub",
"engines": {
"node": ">=20",
Expand Down
17 changes: 17 additions & 0 deletions src/@types/vscode.proposed.chatParticipantAdditions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ declare module 'vscode' {
ChatResponseThinkingProgressPart: ChatResponseThinkingProgressPart;
ChatResponseExternalEditPart: ChatResponseExternalEditPart;
ChatResponseQuestionCarouselPart: ChatResponseQuestionCarouselPart;
ChatResponseAutoModeResolutionPart: ChatResponseAutoModeResolutionPart;
}

export type ExtendedChatResponsePart = ExtendedChatResponseParts[keyof ExtendedChatResponseParts];
Expand Down Expand Up @@ -566,6 +567,22 @@ declare module 'vscode' {
constructor(uriOrCommand: Uri | Command, title: string, description: string, author: string, linkTag: string);
}

/**
* Represents an auto-mode model routing resolution. Displayed as a collapsible
* widget in the chat stream showing which model was selected and why.
*/
export class ChatResponseAutoModeResolutionPart {
/** The model ID that was selected by the router */
resolvedModel: string;
/** The user-facing display name of the resolved model */
resolvedModelName: string;
/** The router's classification label */
predictedLabel: string;
/** Confidence score (0-1) from the router */
confidence: number;
constructor(resolvedModel: string, resolvedModelName: string, predictedLabel: string, confidence: number);
}

export interface ChatResponseStream {

/**
Expand Down