using System; namespace LLama.Exceptions { public class RuntimeError : Exception { public RuntimeError() { } public RuntimeError(string message) : base(message) { } } }
C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。