Spaces:
Sleeping
Sleeping
Error fixing
Browse files- chatbot.py +1 -3
chatbot.py
CHANGED
|
@@ -97,9 +97,7 @@ def render_chatbot(code: str, output: str, error: str):
|
|
| 97 |
# Input area
|
| 98 |
col1, col2 = st.columns([4, 1])
|
| 99 |
with col1:
|
| 100 |
-
user_input = st.
|
| 101 |
-
key="chat_input",
|
| 102 |
-
placeholder="Type your question here...")
|
| 103 |
with col2:
|
| 104 |
send_clicked = st.button("🚀") # Button to send the message
|
| 105 |
|
|
|
|
| 97 |
# Input area
|
| 98 |
col1, col2 = st.columns([4, 1])
|
| 99 |
with col1:
|
| 100 |
+
user_input = st.text_input(placeholder="Type your question here...")
|
|
|
|
|
|
|
| 101 |
with col2:
|
| 102 |
send_clicked = st.button("🚀") # Button to send the message
|
| 103 |
|