factory ChatMessage.fromMap(Map<String, dynamic> map) { return ChatMessage( map['role'] as String, map['content'] as String, ); }