Add id to chat request (#243239)

* Add id to chat request

* Support proposed api check

* Do some casting
This commit is contained in:
Logan Ramos
2025-03-11 12:27:03 -07:00
committed by GitHub
parent 91c7debaf6
commit bea6e1ff1b
3 changed files with 17 additions and 3 deletions

View File

@@ -50,6 +50,10 @@ declare module 'vscode' {
}
export interface ChatRequest {
/**
* The id of the chat request. Used to identity an interaction with any of the chat surfaces.
*/
readonly id: string;
/**
* The attempt number of the request. The first request has attempt number 0.
*/