*/
updateChatTitle(session: URI, chatUri: URI, title: string): void {
if (chatState) {
this._chatStates.set(chatUri, { ...chatState, title });
}
this.dispatchServerAction(session, { type: ActionType.SessionChatUpdated, chat: chatUri, changes: { title } });
}
/**