BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/ITokenStatistics.cs
Jicheng Lu 66e77a0078 refine
2025-01-24 15:22:23 -06:00

12 lines
306 B
C#

namespace BotSharp.Abstraction.Conversations;
public interface ITokenStatistics
{
int Total { get; }
float AccumulatedCost { get; }
float Cost { get; }
void StartTimer();
void StopTimer();
void AddToken(TokenStatsModel stats, RoleDialogModel message);
void PrintStatistics();
}