Mr-TD commited on
Commit
a6d5aaa
1 Parent(s): 40b1789

Add results overview

Browse files
Files changed (1) hide show
  1. app.py +18 -1
app.py CHANGED
@@ -74,4 +74,21 @@ if col1.button("Summarize"):
74
  col2.container(height=500, border=True).markdown(summary_output, unsafe_allow_html=True)
75
 
76
 
77
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  col2.container(height=500, border=True).markdown(summary_output, unsafe_allow_html=True)
75
 
76
 
77
+ with st.expander("Results Overview"):
78
+ # Text input and output elements
79
+ option = st.selectbox(
80
+ "Choose Example 2",
81
+ example_list,
82
+ index=1,
83
+ placeholder="Choose Example",
84
+ )
85
+
86
+ col1, col2 = st.columns(2)
87
+
88
+ col1.title('Input')
89
+ col1.container(height=500, border=True).markdown(option, unsafe_allow_html=True)
90
+
91
+ col2.title('Output')
92
+ col2.container(height=500, border=True).markdown(option, unsafe_allow_html=True)
93
+
94
+