""" memba — persistent memory layer for SSM-based LLMs. Quickstart ---------- from memba import Session s = Session("falcon-mamba-7b-Q4_K_M.gguf", session_id="research") print(s.chat("The Transformer architecture was introduced in 2017.")) s.save() # Later — same session, picks up where it left off s2 = Session("falcon-mamba-7b-Q4_K_M.gguf", session_id="research") print(s2.chat("Who were the authors?")) """ from .session import Session from .core import save_state, load_state, get_state_size, compute_model_id __all__ = ["Session", "save_state", "load_state", "get_state_size", "compute_model_id"] __version__ = "0.1.0"