mohammad2928git commited on
Commit
850efe1
1 Parent(s): c105b09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -20,12 +20,12 @@ def main():
20
  # For newline
21
  st.write("\n")
22
  # Instructions
23
- st.markdown("*Hint: click on the top-right corner of an image to enlarge it!*")
24
  # Set the columns
25
 
26
  col1, col2 = st.columns(2)
27
- col1.subheader("Input page")
28
- col2.subheader("Segmentation heatmap")
29
 
30
  # Model selection
31
  st.sidebar.title("Model selection")
@@ -45,7 +45,7 @@ def main():
45
  with col1:
46
  text_input_temp = st.text_input(
47
  "Please, type your question and submit.",
48
- "Your prompt",
49
  key="placeholder",
50
  )
51
 
 
20
  # For newline
21
  st.write("\n")
22
  # Instructions
23
+ st.markdown("*Hint: you can select the LLM model and write your prompt")
24
  # Set the columns
25
 
26
  col1, col2 = st.columns(2)
27
+ col1.subheader("Prompt Section")
28
+ col2.subheader("Model Output")
29
 
30
  # Model selection
31
  st.sidebar.title("Model selection")
 
45
  with col1:
46
  text_input_temp = st.text_input(
47
  "Please, type your question and submit.",
48
+ "Write Your Prompt",
49
  key="placeholder",
50
  )
51