Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def launch_bot():
|
|
60 |
|
61 |
if "messages" not in st.session_state.keys():
|
62 |
st.session_state.messages = [{"role": "assistant", "content": "How may I help you?"}]
|
63 |
-
for question in questions:
|
64 |
st.button(question, on_click=lambda q=question: submit_question(q))
|
65 |
|
66 |
|
|
|
60 |
|
61 |
if "messages" not in st.session_state.keys():
|
62 |
st.session_state.messages = [{"role": "assistant", "content": "How may I help you?"}]
|
63 |
+
for question in cfg.questions:
|
64 |
st.button(question, on_click=lambda q=question: submit_question(q))
|
65 |
|
66 |
|