File size: 274 Bytes
1d6c316
c40a602
1d6c316
 
 
 
 
 
1
2
3
4
5
6
7
8
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")