Table of Contents

Method GetCacheInfo

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

GetCacheInfo()

Gets information about the cache.

public SkillCacheInfo GetCacheInfo()

Returns

SkillCacheInfo

Cache statistics.

Examples

Getting cache information:

using var loader = new SkillRemoteLoader();
var cacheInfo = loader.GetCacheInfo();
Console.WriteLine($"Cached skills: {cacheInfo.SkillCount}");
Console.WriteLine($"Total size: {cacheInfo.TotalSizeFormatted}");