Showing qlist instead of actual log
Browse files
app.py
CHANGED
@@ -141,6 +141,7 @@ qlist=[
|
|
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 |
'For CAT preparation which is better - online classes or classroom program?',
|
145 |
'What programs are offered under CUET exam by Central University of Jharkhand?',
|
146 |
'What is the pattern of the IPM exam?',
|
@@ -157,10 +158,10 @@ except:
|
|
157 |
st.subheader('CLLM Answering Machine', divider='rainbow')
|
158 |
|
159 |
with st.sidebar:
|
160 |
-
dispstr= 'Search History
|
161 |
st.markdown('*{}*'.format(dispstr))
|
162 |
#st.write('Past Queries')
|
163 |
-
qlist = df_log.tail(30)['query'].tolist()
|
164 |
for q in qlist[::-1]:
|
165 |
st.write(q)
|
166 |
|
|
|
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?',
|
|
|
158 |
st.subheader('CLLM Answering Machine', divider='rainbow')
|
159 |
|
160 |
with st.sidebar:
|
161 |
+
dispstr= 'Search History')
|
162 |
st.markdown('*{}*'.format(dispstr))
|
163 |
#st.write('Past Queries')
|
164 |
+
#qlist = df_log.tail(30)['query'].tolist()
|
165 |
for q in qlist[::-1]:
|
166 |
st.write(q)
|
167 |
|