""" The Librarian - Expert agent for research and knowledge management. Connects to the library-desk API to provide: - HybridRAG search (vector + graph + web) - Wiki.js operations - Knowledge graph queries - Semantic search """ from src.agents.librarian.agent import ( get_librarian_agent, run_librarian, run_librarian_stream, ) from src.agents.librarian.capability import ( LIBRARIAN_CAPABILITY, get_librarian_capability, register_librarian, unregister_librarian, ) __all__ = [ "LIBRARIAN_CAPABILITY", "get_librarian_capability", "get_librarian_agent", "register_librarian", "unregister_librarian", "run_librarian", "run_librarian_stream", ]