mrshibly commited on
Commit
b59430e
ยท
verified ยท
1 Parent(s): 3cccbaa

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
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 (Templates)
103
- st.subheader("๐Ÿ“ Try a Preset Question")
104
  col1, col2, col3, col4 = st.columns(4)
105
 
106
  with col1:
107
- if st.button("โš–๏ธ Fundamental Rights", use_container_width=True):
108
- use_template("What are the fundamental rights of a citizen in the constitution?")
109
  with col2:
110
- if st.button("๐Ÿ“ˆ Economic Growth", use_container_width=True):
111
- use_template("What is the current GDP growth rate and key economic indicators?")
112
  with col3:
113
- if st.button("โš”๏ธ 1971 War", use_container_width=True):
114
  use_template("Summarize the key events of the 1971 Liberation War.")
115
  with col4:
116
- if st.button("๐Ÿ—ณ๏ธ PM's Role", use_container_width=True):
117
- use_template("What are the powers and functions of the Prime Minister?")
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..."):