Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -73,12 +73,15 @@ st_callback = StreamlitCallbackHandler(st.container())
|
|
| 73 |
|
| 74 |
|
| 75 |
|
| 76 |
-
date_input = st.text_input(
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
|
|
|
|
|
|
|
|
|
| 82 |
|
| 83 |
if prompt := st.chat_input():
|
| 84 |
st.chat_message("user").write(prompt)
|
|
|
|
| 73 |
|
| 74 |
|
| 75 |
|
| 76 |
+
# date_input = st.text_input(
|
| 77 |
+
# "Enter Date (ex. 10-11) π",
|
| 78 |
+
# label_visibility=st.session_state.visibility,
|
| 79 |
+
# disabled=st.session_state.disabled,
|
| 80 |
+
# placeholder=st.session_state.placeholder,
|
| 81 |
+
# )
|
| 82 |
+
|
| 83 |
+
date_input = st.text_input(label = "Enter Date (ex. 10-11) π" )
|
| 84 |
+
|
| 85 |
|
| 86 |
if prompt := st.chat_input():
|
| 87 |
st.chat_message("user").write(prompt)
|