import streamlit as st def main(): st.title("Natural Language Processing (NLP)") st.markdown( """ ### What is NLP? NLP (Natural Language Processing) is a branch of artificial intelligence (AI) that enables computers to understand, interpret, and generate human language. It combines linguistics and machine learning techniques to process text and speech data. """ ) # 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()