Upload app.py
Browse files
app.py
CHANGED
|
@@ -99,22 +99,22 @@ st.markdown("##### Ask questions about Bangladesh. Answers sourced strictly from
|
|
| 99 |
|
| 100 |
st.markdown("---")
|
| 101 |
|
| 102 |
-
# Quick Questions (
|
| 103 |
-
st.subheader("๐
|
| 104 |
col1, col2, col3, col4 = st.columns(4)
|
| 105 |
|
| 106 |
with col1:
|
| 107 |
-
if st.button("
|
| 108 |
-
use_template("What are the fundamental rights of a citizen
|
| 109 |
with col2:
|
| 110 |
-
if st.button("
|
| 111 |
-
use_template("What is the current GDP growth rate
|
| 112 |
with col3:
|
| 113 |
-
if st.button("
|
| 114 |
use_template("Summarize the key events of the 1971 Liberation War.")
|
| 115 |
with col4:
|
| 116 |
-
if st.button("
|
| 117 |
-
use_template("What are the powers
|
| 118 |
|
| 119 |
# Interactive Query
|
| 120 |
with st.spinner("Initializing System..."):
|
|
|
|
| 99 |
|
| 100 |
st.markdown("---")
|
| 101 |
|
| 102 |
+
# Quick Questions (Direct & Easy)
|
| 103 |
+
st.subheader("๐ Quick Questions")
|
| 104 |
col1, col2, col3, col4 = st.columns(4)
|
| 105 |
|
| 106 |
with col1:
|
| 107 |
+
if st.button("Questions about Rights?", use_container_width=True):
|
| 108 |
+
use_template("What are the fundamental rights of a citizen?")
|
| 109 |
with col2:
|
| 110 |
+
if st.button("How is the Economy?", use_container_width=True):
|
| 111 |
+
use_template("What is the current GDP growth rate?")
|
| 112 |
with col3:
|
| 113 |
+
if st.button("What happened in 1971?", use_container_width=True):
|
| 114 |
use_template("Summarize the key events of the 1971 Liberation War.")
|
| 115 |
with col4:
|
| 116 |
+
if st.button("What does the PM do?", use_container_width=True):
|
| 117 |
+
use_template("What are the powers of the Prime Minister?")
|
| 118 |
|
| 119 |
# Interactive Query
|
| 120 |
with st.spinner("Initializing System..."):
|