BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/ITokenStatistics.cs

12 lines
281 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);
void PrintStatistics();
}