Files

27 lines
486 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using BS.Shared;
using BS.Shared.Core;
namespace BeWo.Data.Entities
{
public class AiConfig : BeWoEntityBase
{
public AiConfig()
{
_Tid = TableID.AiConfig;
}
public virtual AiModel SelectedModel { get; set; }
public virtual float Temperature { get; set; }
public virtual float Top_P { get; set; }
public virtual int Max_Gen_Len { get; set; }
2025-07-16 13:36:59 +02:00
public virtual AiDataContextType Context_Type { get; set; }
}
}