Spaces:
Sleeping
Sleeping
File size: 305 Bytes
d9fdfda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
import main
def main():
text = st.text_input("Enter the text to classify: ")
if text:
results = main.content_moderator(text)
st.write(results)
else:
st.write("Please enter some text to classify")
st.write("Waiting for input...")
main() |