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

12 lines
306 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();
2025-01-24 21:22:23 +00:00
void AddToken(TokenStatsModel stats, RoleDialogModel message);
2023-09-24 21:32:58 +00:00
void PrintStatistics();
}