pdfchat / app.py
markytools's picture
message
6a1c9b8
raw
history blame
586 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.")
title = st.text_input('Movie title', 'Life of Brian')
st.write('The current movie title is', title)