# Code Explainer 🧠 This project uses the `bigcode/starcoder` model to explain Python code in plain English. ## How to Run ```bash pip install -r requirements.txt streamlit run app/main.py ``` ## Example Input: ```python def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) ``` Output: > This function calculates the nth Fibonacci number using recursion...