readonly chats: IAgentChats = {
createChat: (chatUri: URI, options?: IAgentCreateChatOptions): Promise<IAgentCreateChatResult | void> => {
return this.createChat(session, chat, options);
},
fork: (chatUri: URI, source: IAgentCreateChatForkSource, options?: IAgentCreateChatOptions): Promise<IAgentCreateChatResult | void> => {
const { session, chat } = this._resolveChatTarget(chatUri);