namespace BotSharp.Abstraction.Conversations.Models;
public class TokenStatsModel
{
public string Model { get; set; }
public string Prompt { get; set; }
public int PromptCount { get; set; }
public int CompletionCount { get; set; }
///
/// Prompt cost per 1K token
///
public float PromptCost { get; set; }
///
/// Completion cost per 1K token
///
public float CompletionCost { get; set; }
}