18 lines
353 B
C#
18 lines
353 B
C#
using Admin.NET.Core.Ai.Models;
|
|
|
|
namespace Admin.NET.Core.Ai.Interface;
|
|
|
|
/// <summary>
|
|
/// LLM工厂接口
|
|
/// </summary>
|
|
public interface ILLMFactory
|
|
{
|
|
/// <summary>
|
|
/// 创建Kernel实例
|
|
/// </summary>
|
|
/// <param name="modelInput">模型输入</param>
|
|
/// <returns></returns>
|
|
Kernel CreateKernel(LLMModelInput modelInput);
|
|
}
|
|
|