#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error(transparent)]
RenderTemplate(#[from] minijinja::Error),
#[error("continue_final_message is set but the final message does not appear in the chat after applying the chat template!")]
FinalMsgNotInChat,
#[error(transparent)]
Encode(#[from] tokenizers::tokenizer::Error),
}