return undefined;
}
const currentTodoItems = this.chatTodoListService.getTodos(chatSessionResource);
let message: string | undefined;
if (args.operation === 'read') {
message = localize('todo.readOperation', "Read todo list");
message = this.generatePastTenseMessage(currentTodoItems, args.todoList);
}
const items = args.todoList ?? currentTodoItems;
const todoList = items.map(todo => ({
id: todo.id.toString(),