namespace LLama.Native { /// /// RoPE scaling type. /// /// C# equivalent of llama_rope_scaling_type public enum RopeScalingType : sbyte { /// /// No particular scaling type has been specified /// LLAMA_ROPE_SCALING_UNSPECIFIED = -1, /// /// Do not apply any RoPE scaling /// LLAMA_ROPE_SCALING_NONE = 0, /// /// Positional linear interpolation, as described by kaikendev: https://kaiokendev.github.io/til#extending-context-to-8k /// LLAMA_ROPE_SCALING_LINEAR = 1, /// /// YaRN scaling: https://arxiv.org/pdf/2309.00071.pdf /// LLAMA_ROPE_SCALING_YARN = 2, } }