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

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +6 -3
src/streamlit_app.py CHANGED
@@ -144,12 +144,15 @@ st.markdown("Enter a URL and a query to generate a diverse set of related querie
144
  col1, col2 = st.columns(2)
145
  with col1:
146
  url = st.text_input("URL", value="dejan.ai", help="Target URL that provides context for the query.")
 
 
 
 
 
 
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:
155
  cfg = GENERATION_CONFIG
 
144
  col1, col2 = st.columns(2)
145
  with col1:
146
  url = st.text_input("URL", value="dejan.ai", help="Target URL that provides context for the query.")
147
+ b1, b2 = st.columns(2)
148
+ with b1:
149
+ deep_btn = st.button("Deep Analysis", use_container_width=True)
150
+ with b2:
151
+ quick_btn = st.button("Quick Fan-Out", use_container_width=True)
152
+
153
  with col2:
154
  query = st.text_input("Query", value="ai seo agency", help="The search query you want to expand.")
155
 
 
 
 
156
  # ---- Deep Analysis path (sampling, large batches) ----
157
  if deep_btn:
158
  cfg = GENERATION_CONFIG