exportFormat method
Exports chat history in the specified format
Implementation
String exportFormat(LlamaLibraryChatFormat format) {
switch (format) {
case LlamaLibraryChatFormat.chatml:
return _exportChatML();
case LlamaLibraryChatFormat.alpaca:
return _exportAlpaca();
}
}