exportFormat method

String exportFormat(
  1. LlamaLibraryChatFormat format
)

Exports chat history in the specified format

Implementation

String exportFormat(LlamaLibraryChatFormat format) {
  switch (format) {
    case LlamaLibraryChatFormat.chatml:
      return _exportChatML();
    case LlamaLibraryChatFormat.alpaca:
      return _exportAlpaca();
  }
}