Spaces:
Paused
Paused
File size: 395 Bytes
4a7650f 1ae33da 4a7650f |
1 2 3 4 5 6 7 8 9 10 11 |
# Import convention
import streamlit as st
organ = st.selectbox('Organ', ['Brain', 'Thorax'], index=None)
modality = st.selectbox('Modality', ['Magnetic Resonance Imaging', 'Computed Tomography'], index=None)
style = st.selectbox('Style', ['Picasso', 'Van Gogh'], index=None)
prompt_lst = [organ, modality, style]
if None not in prompt_lst:
prompt = ','.join(prompt_lst)
print(prompt) |