using Admin.NET.Core.Ai.Models; namespace Admin.NET.Core.Ai.Interface; /// /// LLM工厂接口 /// public interface ILLMFactory { /// /// 创建Kernel实例 /// /// 模型输入 /// Kernel CreateKernel(LLMModelInput modelInput); }