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

16 lines
451 B
C#
Raw Normal View History

2025-05-08 16:30:40 +00:00
namespace BotSharp.Plugin.MongoStorage.Models;
2025-05-08 16:34:58 +00:00
[BsonIgnoreExtraElements(Inherited = true)]
2025-05-08 16:30:40 +00:00
public class StatsCountMongoElement
{
public long AgentCallCount { get; set; }
}
2025-05-08 16:34:58 +00:00
[BsonIgnoreExtraElements(Inherited = true)]
2025-05-08 16:30:40 +00:00
public class StatsLlmCostMongoElement
{
public long PromptTokens { get; set; }
public long CompletionTokens { get; set; }
public float PromptTotalCost { get; set; }
public float CompletionTotalCost { get; set; }
}