pdfchat / app.py
markytools's picture
message
9830b8e
raw
history blame
485 Bytes
import streamlit as st
radioButtonList = ["E-commerce CSV (https://www.kaggle.com/datasets/mervemenekse/ecommerce-dataset)",
"Upload my own CSV",
"Upload my own PDF",
"URL Chat with Google Alphabet's 2022 Q2 Earnings (https://shorturl.at/csCK3)",
"Enter my own URL (enable url input below)"]
genre = st.radio(
"Choose dataset to finetune", radioButtonList
)
if genre ==radioButtonList[0]:
st.write('You selected comedy.')
else:
st.write("You didn\'t select comedy.")