BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/GlobalStatsMongoElement.cs

14 lines
363 B
C#
Raw Normal View History

2025-05-08 16:30:40 +00:00
namespace BotSharp.Plugin.MongoStorage.Models;
public class StatsCountMongoElement
{
public long AgentCallCount { get; set; }
}
public class StatsLlmCostMongoElement
{
public long PromptTokens { get; set; }
public long CompletionTokens { get; set; }
public float PromptTotalCost { get; set; }
public float CompletionTotalCost { get; set; }
}