cyberandy commited on
Commit
53e796e
·
verified ·
1 Parent(s): 7709365

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -137,16 +137,14 @@ def main():
137
  st.title("Meta AI SEO Tool")
138
 
139
  # User input
140
- user_query = st.text_area("Enter your query:", height=150)
141
- submit_button = st.button("Analyze Query")
142
 
143
  # Create tabs
144
  tab1, tab2, tab3 = st.tabs(["Overview", "Analysis", "Sentiment"])
145
 
146
  # Tab 1: Overview - Showing the initial response and sources
147
  with tab1:
148
- user_query = st.text_area("Enter your query:", height=150, key="query_overview")
149
- submit_button = st.button("Analyze Query", key="submit_overview")
150
 
151
  if submit_button and user_query:
152
  response = fetch_response(user_query)
 
137
  st.title("Meta AI SEO Tool")
138
 
139
  # User input
140
+ user_query = st.text_area("Enter your query:", height=150, key="query_overview")
141
+ submit_button = st.button("Analyze Query", key="submit_overview")
142
 
143
  # Create tabs
144
  tab1, tab2, tab3 = st.tabs(["Overview", "Analysis", "Sentiment"])
145
 
146
  # Tab 1: Overview - Showing the initial response and sources
147
  with tab1:
 
 
148
 
149
  if submit_button and user_query:
150
  response = fetch_response(user_query)