dejanseo commited on
Commit
7973d62
·
verified ·
1 Parent(s): 9198c88

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -6
src/streamlit_app.py CHANGED
@@ -147,12 +147,8 @@ with col1:
147
  with col2:
148
  query = st.text_input("Query", value="ai seo agency", help="The search query you want to expand.")
149
 
150
- # --- Two actions side by side ---
151
- bcol1, bcol2 = st.columns(2)
152
- with bcol1:
153
- deep_btn = st.button("Deep Analysis")
154
- with bcol2:
155
- quick_btn = st.button("Quick Fan-Out")
156
 
157
  # ---- Deep Analysis path (sampling, large batches) ----
158
  if deep_btn:
 
147
  with col2:
148
  query = st.text_input("Query", value="ai seo agency", help="The search query you want to expand.")
149
 
150
+ deep_btn = st.button("Deep Analysis")
151
+ quick_btn = st.button("Quick Fan-Out")
 
 
 
 
152
 
153
  # ---- Deep Analysis path (sampling, large batches) ----
154
  if deep_btn: