import streamlit as st st.markdown('### Hello, world!') st.markdown("", unsafe_allow_html=True) from transformers import pipeline pipe = pipeline("ner", "Davlan/distilbert-base-multilingual-cased-ner-hrl") text = st.text_area("Text here") st.markdown(f'{pipe(text)}')