Content-Mod-ZSC / app.py
ayoni02
edits
d45b0b7
raw
history blame
307 Bytes
import streamlit as st
import mainn
def main():
text = st.text_input("Enter the text to classify: ")
if text:
results = mainn.content_moderator(text)
st.write(results)
else:
st.write("Please enter some text to classify")
st.write("Waiting for input...")
main()