"""Import side-effects: registers every tool. Import this module once at startup.""" from app.tools import ( # noqa: F401 analyze_file, appraisal_calc, create_docx, create_excel, edit_excel, execute_python, financial_calc, generate_quiz, make_chart, search_course, unit_convert, web_search, ) from app.tools.registry import registry __all__ = ["registry"]