aelius commited on
Commit
4a7650f
1 Parent(s): 358a559
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Import convention
2
+ import streamlit as st
3
+
4
+ organ = st.selectbox('Organ', ['Brain', 'Thorax'], index=None)
5
+ modality = st.selectbox('Modality', ['Magnetic Resonance Imaging', 'Computed Tomography'], index=None)
6
+ style = st.selectbox('Style', ['Picasso', 'Van Gogh'], index=None)
7
+
8
+ prompt_lst = [organ, modality, style]
9
+ if None not in prompt_lst:
10
+ prompt = ','.join()
11
+ print(prompt)