BotSharp/src/Infrastructure/BotSharp.Abstraction/Models/AiModel.cs

11 lines
302 B
C#
Raw Normal View History

2023-05-26 01:36:15 +00:00
namespace BotSharp.Abstraction.Models;
public class AiModel
{
public string Id { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public int MaxLength { get; set; }
public int TokenLimit { get; set; }
}