BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/TokenStatsModel.cs

12 lines
341 B
C#
Raw Normal View History

2023-09-26 03:04:04 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class TokenStatsModel
{
2023-12-13 18:12:25 +00:00
public string Provider { get; set; }
2023-09-26 03:04:04 +00:00
public string Model { get; set; }
2023-10-30 16:48:18 +00:00
public string Prompt { get; set; }
2023-09-26 03:04:04 +00:00
public int PromptCount { get; set; }
public int CompletionCount { get; set; }
2023-12-13 18:12:25 +00:00
public AgentLlmConfig LlmConfig { get; set; }
2023-09-26 03:04:04 +00:00
}