haive.agents.memory.tools ========================= .. py:module:: haive.agents.memory.tools .. autoapi-nested-parse:: Memory tools for save/search/KG operations. Tools use closures to capture the store instance. Designed for use with ReactAgent's tool-calling loop. Functions --------- .. autoapisummary:: haive.agents.memory.tools.create_memory_tools Module Contents --------------- .. py:function:: create_memory_tools(store, user_id = 'default') Create memory tools bound to a specific store and user. :param store: LangGraph BaseStore instance (InMemoryStore or PostgresStore) :param user_id: User ID for namespace scoping :returns: [save_memory, search_memory, save_knowledge] :rtype: List of tools