import streamlit as st import numpy as np st.text_input("Input Text Here:", "I really like the color of your car!") option = st.selectbox('What pre-trained model would you like for your sentiment analysis?',('TensorFlow', 'PyTorch', 'JAX')) st.write('You selected:', option)