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; }
|
|
|
|
|
}
|