18 lines
430 B
Python
18 lines
430 B
Python
|
|
"""
|
||
|
|
Knowledge Base Package
|
||
|
|
======================
|
||
|
|
|
||
|
|
Provides persistent knowledge storage for Atomizer including:
|
||
|
|
- LAC (Learning Atomizer Core): Session insights, optimization memory, skill evolution
|
||
|
|
- Research sessions: Detailed research logs
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .lac import LearningAtomizerCore, get_lac, record_insight, query_insights
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"LearningAtomizerCore",
|
||
|
|
"get_lac",
|
||
|
|
"record_insight",
|
||
|
|
"query_insights",
|
||
|
|
]
|