decouple scenario, add structure to memories

This commit is contained in:
2026-04-11 22:00:25 +05:30
parent cf6653afbd
commit 48f02e7d44
7 changed files with 689 additions and 122 deletions

12
logging_setup.py Normal file
View File

@@ -0,0 +1,12 @@
import logging
from rich.logging import RichHandler
def configure_logging(level="INFO"):
logging.basicConfig(
level=level,
format="%(message)s",
datefmt="[%X]",
handlers=[RichHandler(rich_tracebacks=True)],
)