""" The Biographer - Expert for recording and recalling the user's story. The Biographer serves as the household's memory keeper, responsible for: - Recording and recalling facts about the user's life - Storing personal information, preferences, and insights - Answering questions like "What car do I drive?", "Where do I work?" - Managing what the household knows and remembers For direct key-based lookups (location, timezone, preferences), use the memory_service instead - it's faster and doesn't require LLM. The Biographer handles semantic, fuzzy queries. """ from src.agents.biographer.agent import ( get_biographer_agent, run_biographer, run_biographer_stream, ) from src.agents.biographer.capability import ( BIOGRAPHER_CAPABILITY, get_biographer_capability, register_biographer, unregister_biographer, ) __all__ = [ "BIOGRAPHER_CAPABILITY", "get_biographer_capability", "get_biographer_agent", "register_biographer", "unregister_biographer", "run_biographer", "run_biographer_stream", ]