← Back to Files
IToolCallLogService.cs
using KaiChat.Models;
namespace KaiChat.Services;
public interface IToolCallLogService
{
void Add(ToolCallLog entry);
List<ToolCallLog> GetRecent(int count = 100);
int GetTotalCount();
void Clear();
string LogFilePath { get; }
}