home-fasthtml / app.py
AItool's picture
Update app.py
c40a602 verified
raw
history blame contribute delete
274 Bytes
import streamlit as st
#from src.some_module import your_pipeline # whatever you need
st.title("Home-FastHTML in Streamlit")
input_html = st.text_area("Paste HTML here")
if st.button("Transform"):
output = your_pipeline(input_html)
st.code(output, language="html")