27 lines
486 B
C#
27 lines
486 B
C#
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; }
|
|
|
|
public virtual AiDataContextType Context_Type { get; set; }
|
|
}
|
|
}
|