using System; using System.Collections.Generic; using System.Text; namespace LLama.Transform { public interface ITokenizer { IEnumerable Tokenize(LLamaContext context, string text, bool addBos = true, bool special = false); string Detokenize(LLamaContext context, int token); string Detokenize(LLamaContext context, IEnumerable tokens); } }