Spaces:
Sleeping
Sleeping
A newer version of the Streamlit SDK is available: 1.58.0
metadata
title: Code Explainer π‘
emoji: π§
colorFrom: indigo
colorTo: purple
sdk: streamlit
sdk_version: 1.35.0
app_file: streamlit_app.py
pinned: false
π§ Code Explainer β Explain Any Python Code in Plain English
This Streamlit app uses the bigcode/starcoder model to generate step-by-step explanations for Python code snippets.
π Live Demo
Paste Python code in the text box and get a natural language explanation generated by an AI model trained on billions of lines of code.
β¨ Example
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)