# AI Code Summarizer This tool uses AI-powered coding assistants like ChatGPT and Claude to summarize complex codebases into concise, high-level descriptions. It's useful for developers who want to quickly understand the functionality and architecture of large codebases. ## Installation To install the required packages, run the following command: ```bash pip install transformers torch ``` ## Usage To use the tool, run the following command: ```bash python ai_code_summarizer.py --file path_to_your_code.py ``` Replace `path_to_your_code.py` with the path to your Python code file. ## Tests To run the tests, use the following command: ```bash pytest test_ai_code_summarizer.py ```