LlamaLibraryMessage.fromJson constructor
Creates a Message from JSON
Implementation
factory LlamaLibraryMessage.fromJson(Map<String, dynamic> json) {
return LlamaLibraryMessage(
role: LlamaLibraryRole.fromString(json['role'] as String),
content: json['content'] as String,
);
}