renderMemorySummary method
Renders a summary of memory counts.
Implementation
String renderMemorySummary({
required int episodicCount,
required int semanticCount,
required int workingCount,
}) =>
'''
── Memory Summary ───────────────────────────────
Episodic : $episodicCount (specific events)
Semantic : $semanticCount (general facts)
Working : $workingCount (short-term buffer)
─────────────────────────────────────────────────''';