Spaces:
Runtime error
Runtime error
File size: 315 Bytes
4f79945 f9021a0 eaab51a f9021a0 eaab51a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
st.markdown("### Hello, world!")
st.markdown("<img width=200px src='https://rozetked.me/images/uploads/dwoilp3BVjlE.jpg'>", unsafe_allow_html=True)
from transformers import pipeline
def process(text):
return text[::-1]
text = st.text_area("TEXT HERE")
st.markdown(f"{process(text)}") |