BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/TokenStatsModel.cs
2023-12-13 12:12:25 -06:00

12 lines
341 B
C#

namespace BotSharp.Abstraction.Conversations.Models;
public class TokenStatsModel
{
public string Provider { get; set; }
public string Model { get; set; }
public string Prompt { get; set; }
public int PromptCount { get; set; }
public int CompletionCount { get; set; }
public AgentLlmConfig LlmConfig { get; set; }
}