factory ChatCompletionMessage.fromJson(Map<String, dynamic> json) => ChatCompletionMessage( role: json['role'], content: json['content'], );