Spaces:
Sleeping
Sleeping
Aamir
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,7 +41,8 @@ def chatbot_ui():
|
|
| 41 |
""",
|
| 42 |
unsafe_allow_html=True,
|
| 43 |
)
|
| 44 |
-
user_input = st.text_input(
|
|
|
|
| 45 |
|
| 46 |
if st.button("Send") and user_input:
|
| 47 |
generate_response(user_input)
|
|
|
|
| 41 |
""",
|
| 42 |
unsafe_allow_html=True,
|
| 43 |
)
|
| 44 |
+
user_input = st.text_input("Type your question:", "")
|
| 45 |
+
|
| 46 |
|
| 47 |
if st.button("Send") and user_input:
|
| 48 |
generate_response(user_input)
|