BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/GlobalStatsMongoElement.cs
2025-05-08 11:34:58 -05:00

16 lines
451 B
C#

namespace BotSharp.Plugin.MongoStorage.Models;
[BsonIgnoreExtraElements(Inherited = true)]
public class StatsCountMongoElement
{
public long AgentCallCount { get; set; }
}
[BsonIgnoreExtraElements(Inherited = true)]
public class StatsLlmCostMongoElement
{
public long PromptTokens { get; set; }
public long CompletionTokens { get; set; }
public float PromptTotalCost { get; set; }
public float CompletionTotalCost { get; set; }
}