Update app.py
Browse files
app.py
CHANGED
@@ -137,11 +137,12 @@ logfile='querylog.csv'
|
|
137 |
|
138 |
qlist=[
|
139 |
'What are the best books for VARC in CAT?',
|
140 |
-
'What is the XAT exam pattern? How many sections ? How many questions?',
|
141 |
'I want to know about Personalized coaching for IGSE/IB',
|
142 |
'Which IIMs accept admissions under the IPM exam?',
|
143 |
'What topics are covered under CAT exam syllabus?',
|
144 |
-
'What is the pattern of the IPM exam?'
|
|
|
145 |
'For CAT preparation which is better - online classes or classroom program?',
|
146 |
'What programs are offered under CUET exam by Central University of Jharkhand?',
|
147 |
'What is the pattern of the IPM exam?',
|
@@ -174,8 +175,8 @@ for message in st.session_state.messages:
|
|
174 |
with st.chat_message(message["role"]):
|
175 |
st.markdown(message["content"])
|
176 |
|
177 |
-
with st.chat_message("user"):
|
178 |
-
st.write("Hello 👋 Ask any question related to careerlauncher.com in the text box below")
|
179 |
|
180 |
QUESTION = st.chat_input('Ask a question -e.g How to prepare for Verbal section for CAT?')
|
181 |
|
|
|
137 |
|
138 |
qlist=[
|
139 |
'What are the best books for VARC in CAT?',
|
140 |
+
'What is the XAT exam pattern? How many sections ? How many questions are asked in each section?',
|
141 |
'I want to know about Personalized coaching for IGSE/IB',
|
142 |
'Which IIMs accept admissions under the IPM exam?',
|
143 |
'What topics are covered under CAT exam syllabus?',
|
144 |
+
'What is the pattern of the IPM exam?',
|
145 |
+
'Which Central Universities offer courses for CUET exam',
|
146 |
'For CAT preparation which is better - online classes or classroom program?',
|
147 |
'What programs are offered under CUET exam by Central University of Jharkhand?',
|
148 |
'What is the pattern of the IPM exam?',
|
|
|
175 |
with st.chat_message(message["role"]):
|
176 |
st.markdown(message["content"])
|
177 |
|
178 |
+
#with st.chat_message("user"):
|
179 |
+
# st.write("Hello 👋 Ask any question related to careerlauncher.com in the text box below")
|
180 |
|
181 |
QUESTION = st.chat_input('Ask a question -e.g How to prepare for Verbal section for CAT?')
|
182 |
|