mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
12 lines
266 B
Python
12 lines
266 B
Python
|
|
"""Learning and Memory Systems
|
||
|
|
|
||
|
|
Manages long-term learning from experience:
|
||
|
|
- Reflexion Memory (mistake learning)
|
||
|
|
- Metrics collection
|
||
|
|
- Pattern recognition
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .reflexion import ReflexionMemory, ReflexionEntry
|
||
|
|
|
||
|
|
__all__ = ["ReflexionMemory", "ReflexionEntry"]
|