namespace LLama.Native;
///
/// Return codes from llama_decode
///
public enum DecodeResult
{
///
/// An unspecified error
///
Error = -1,
///
/// Ok.
///
Ok = 0,
///
/// Could not find a KV slot for the batch (try reducing the size of the batch or increase the context)
///
NoKvSlot = 1,
}