markytools commited on
Commit
9830b8e
·
1 Parent(s): b16e227
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -1,11 +1,15 @@
1
  import streamlit as st
2
 
 
 
 
 
 
3
  genre = st.radio(
4
- "What's your favorite movie genre",
5
- [":rainbow[Comedy]", "***Drama***", "Documentary :movie_camera:"],
6
- captions = ["Laugh out loud.", "Get the popcorn.", "Never stop learning."])
7
 
8
- if genre == ':rainbow[Comedy]':
9
  st.write('You selected comedy.')
10
  else:
11
  st.write("You didn\'t select comedy.")
 
1
  import streamlit as st
2
 
3
+ radioButtonList = ["E-commerce CSV (https://www.kaggle.com/datasets/mervemenekse/ecommerce-dataset)",
4
+ "Upload my own CSV",
5
+ "Upload my own PDF",
6
+ "URL Chat with Google Alphabet's 2022 Q2 Earnings (https://shorturl.at/csCK3)",
7
+ "Enter my own URL (enable url input below)"]
8
  genre = st.radio(
9
+ "Choose dataset to finetune", radioButtonList
10
+ )
 
11
 
12
+ if genre ==radioButtonList[0]:
13
  st.write('You selected comedy.')
14
  else:
15
  st.write("You didn\'t select comedy.")