Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ set_initial_state()
|
|
14 |
|
15 |
sidebar()
|
16 |
|
17 |
-
st.write("#
|
18 |
|
19 |
pipeline = start_haystack(st.session_state.get("COHERE_API_KEY"))
|
20 |
|
@@ -22,7 +22,7 @@ st.session_state["api_key_configured"] = True
|
|
22 |
search_bar, button = st.columns(2)
|
23 |
# Search bar
|
24 |
with search_bar:
|
25 |
-
prompt = st.text_input("Your question", on_change=reset_results)
|
26 |
|
27 |
with button:
|
28 |
st.write("")
|
|
|
14 |
|
15 |
sidebar()
|
16 |
|
17 |
+
st.write("# 🔎 Ask Me Anything")
|
18 |
|
19 |
pipeline = start_haystack(st.session_state.get("COHERE_API_KEY"))
|
20 |
|
|
|
22 |
search_bar, button = st.columns(2)
|
23 |
# Search bar
|
24 |
with search_bar:
|
25 |
+
prompt = st.text_input("Your question (e.g., It doesn't work on Android. The app is not blocking call!!!)", on_change=reset_results)
|
26 |
|
27 |
with button:
|
28 |
st.write("")
|