zacsims commited on
Commit
cf8f745
·
1 Parent(s): 1c8989c
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -10,12 +10,15 @@ cell_type_options = [
10
  "M2 Macrophages",
11
  "Malignant Epithelial Cells"
12
  ]
 
 
 
13
 
14
  # Create the user input field
15
  selected_cell_type = st.selectbox("Cell Type", cell_type_options)
 
 
16
 
17
- # Display the selected cell type (optional)
18
- st.write("You selected:", selected_cell_type)
19
 
20
  # You can add additional functionality here based on the selected cell type
21
  # For example, display information about the selected cell type
 
10
  "M2 Macrophages",
11
  "Malignant Epithelial Cells"
12
  ]
13
+ signal_options = ['IL-10', 'IFN‐gamma']
14
+
15
+ st.title("Automatic Generation of PhysiCell Rules using Gemini 1.5 and PubMed RAG")
16
 
17
  # Create the user input field
18
  selected_cell_type = st.selectbox("Cell Type", cell_type_options)
19
+ selected_signal = st.selectbox("Signal", signal_options)
20
+
21
 
 
 
22
 
23
  # You can add additional functionality here based on the selected cell type
24
  # For example, display information about the selected cell type