Size: 263 B Modified: 25/06/2026 12:18 PM
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; }
}
Offline