import streamlit as st from transformers import pipeline st.markdown("### Hello, world!") st.markdown("", unsafe_allow_html=True) text = st.text_area("TEXT HERE") # pipe = pipeline("ner", "Davlan/distilbert-base-multilingual-cased-ner-hrl") # raw_predictions = pipe(text) st.markdown(f"IT'S MEEE! HELLO FRIEND")