BotSharp/src/Infrastructure/BotSharp.Abstraction/Models/AiModel.cs
2024-08-27 12:12:17 -05:00

11 lines
302 B
C#

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; }
}