import streamlit as st def main(): st.title("Natural Language Processing (NLP)") st.markdown( """ ### What is NLP? Natural Language Processing (NLP) is a branch of artificial intelligence that focuses on the interaction between computers and humans through natural language. It enables machines to read, understand, and respond to human language in a way that is both meaningful and useful. From chatbots to translation tools, NLP powers various applications that make communication with technology more intuitive. """ ) # Button to redirect to another Hugging Face space if st.button("Explore More"): st.markdown( 'Click here to explore!', unsafe_allow_html=True, ) if __name__ == "__main__": main()