vsj0702 commited on
Commit
fb852ed
·
verified ·
1 Parent(s): 2a9d572
Files changed (1) hide show
  1. chatbot.py +2 -2
chatbot.py CHANGED
@@ -97,11 +97,11 @@ 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.text_input("Ask about your code...",
101
  key="chat_input",
102
  placeholder="Type your question here...")
103
  with col2:
104
- send_clicked = st.button("Send") # Button to send the message
105
 
106
  if user_input and send_clicked:
107
  # Get response
 
97
  # Input area
98
  col1, col2 = st.columns([4, 1])
99
  with col1:
100
+ user_input = st.text_area("Ask about your code...",
101
  key="chat_input",
102
  placeholder="Type your question here...")
103
  with col2:
104
+ send_clicked = st.button("🚀") # Button to send the message
105
 
106
  if user_input and send_clicked:
107
  # Get response