12 lines
306 B
C#
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();
|
|
} |