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

12 lines
281 B
C#
Raw Normal View History

2023-09-24 21:32:58 +00:00
namespace BotSharp.Abstraction.Conversations;
public interface ITokenStatistics
{
int Total { get; }
float AccumulatedCost { get; }
float Cost { get; }
void StartTimer();
void StopTimer();
2023-09-26 03:04:04 +00:00
void AddToken(TokenStatsModel stats);
2023-09-24 21:32:58 +00:00
void PrintStatistics();
}