Skip to content

Commit 48cb809

Browse files
authored
Merge pull request #77 from anfredette/ui-space
refactor(ui): Remove unnecessary HTML div wrapper from text area
2 parents db93407 + 1def906 commit 48cb809

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

ui/app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4506,8 +4506,7 @@ def clear_dialog_states():
45064506

45074507
st.markdown('<div class="section-header">Describe your use case or select from 9 predefined scenarios</div>', unsafe_allow_html=True)
45084508

4509-
# Input area with validation
4510-
st.markdown('<div class="input-container">', unsafe_allow_html=True)
4509+
# Input area
45114510
st.text_area(
45124511
"Your requirements:",
45134512
key="user_input",
@@ -4516,7 +4515,6 @@ def clear_dialog_states():
45164515
placeholder="Describe your LLM use case in natural language...\n\nExample: I need a chatbot for customer support with 30 users. Low latency is important, and we have H100 GPUs available.",
45174516
label_visibility="collapsed"
45184517
)
4519-
st.markdown('</div>', unsafe_allow_html=True)
45204518

45214519
# Row 1: 5 task buttons
45224520
col1, col2, col3, col4, col5 = st.columns(5)

0 commit comments

Comments
 (0)