Some checks failed
CI / test (pull_request) Has been cancelled
- Add ContextScheduler with run_if_due() for periodic rollups - Weekly (Sunday), monthly (last day), quarterly, annual, legacy schedules - Daily cleanup of expired contexts via ContextStore - Dedup guard: each task runs at most once per day Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
412 B
Python
12 lines
412 B
Python
"""Multi-layered context management system for trading decisions.
|
|
|
|
The context tree implements Pillar 2: hierarchical memory management across
|
|
7 time horizons, from real-time quotes to generational wisdom.
|
|
"""
|
|
|
|
from src.context.layer import ContextLayer
|
|
from src.context.scheduler import ContextScheduler
|
|
from src.context.store import ContextStore
|
|
|
|
__all__ = ["ContextLayer", "ContextScheduler", "ContextStore"]
|