Update app.py
Browse files
app.py
CHANGED
|
@@ -116,7 +116,12 @@ def main():
|
|
| 116 |
query = "Wofür wird die Alpha-ID verwendet?"
|
| 117 |
if st.button("Was sind die Vorteile des ambulanten operierens?"):
|
| 118 |
query = "Was sind die Vorteile des ambulanten operierens?"
|
| 119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
if st.button("Ask") or (not st.session_state['chat_history'] and query) or (st.session_state['chat_history'] and query != st.session_state['chat_history'][-1][1]):
|
| 121 |
st.session_state['chat_history'].append(("User", query, "new"))
|
| 122 |
|
|
|
|
| 116 |
query = "Wofür wird die Alpha-ID verwendet?"
|
| 117 |
if st.button("Was sind die Vorteile des ambulanten operierens?"):
|
| 118 |
query = "Was sind die Vorteile des ambulanten operierens?"
|
| 119 |
+
if st.button("Was kann ich mit dem Prognose-Analyse Toll machen?"):
|
| 120 |
+
query = "Was kann ich mit dem Prognose-Analyse Toll machen?"
|
| 121 |
+
if st.button("Was sagt mir die Farbe der Balken der Bevölkerungsentwicklung?"):
|
| 122 |
+
query = "Was sagt mir die Farbe der Balken der Bevölkerungsentwicklung?"
|
| 123 |
+
|
| 124 |
+
|
| 125 |
if st.button("Ask") or (not st.session_state['chat_history'] and query) or (st.session_state['chat_history'] and query != st.session_state['chat_history'][-1][1]):
|
| 126 |
st.session_state['chat_history'].append(("User", query, "new"))
|
| 127 |
|