Spaces:
Configuration error
Configuration error
File size: 405 Bytes
d7c3b25 218056d d7c3b25 218056d d7c3b25 218056d d7c3b25 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # 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...
|