UNIVPLMDataIntegration/Admin.NET/Admin.NET.Core/Ai/Models/LLMModelInput.cs

19 lines
340 B
C#

namespace Admin.NET.Core.Ai.Models;
/// <summary>
/// LLM模型输入
/// 用途:切换模型
/// </summary>
public class LLMModelInput
{
/// <summary>
/// 产品名称
/// </summary>
public string ProductName { get; set; }
/// <summary>
/// 模型ID
/// </summary>
public string ModelId { get; set; }
}