Python 64.6%
TypeScript 33.7%
CSS 0.8%
1"""Import side-effects: registers every tool. Import this module once at startup."""23from app.tools import ( # noqa: F4014 analyze_file,5 appraisal_calc,6 create_docx,7 create_excel,8 edit_excel,9 execute_python,10 financial_calc,11 generate_quiz,12 make_chart,13 search_course,14 unit_convert,15 web_search,16)17from app.tools.registry import registry1819__all__ = ["registry"]20