DrishtiSharma commited on
Commit
9b62756
Β·
verified Β·
1 Parent(s): d1ebaeb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -12
app.py CHANGED
@@ -119,12 +119,22 @@ st.markdown(
119
  # 2. Add the title at the top
120
  st.markdown('<div class="title">Swarm-based Web Content Analyzer 🧐</div>', unsafe_allow_html=True)
121
 
122
- # 3. Add the description below the image
123
  st.markdown('<div class="description">Effortlessly extract, analyze, and summarize web content using multi-agents.</div>', unsafe_allow_html=True)
124
 
125
- # 4. Add the image below the title
126
  st.image("./image-4.png", use_container_width=True)
127
 
 
 
 
 
 
 
 
 
 
 
128
  fetch_openai_api_key()
129
 
130
  if 'OPENAI_API_KEY' in os.environ and os.environ['OPENAI_API_KEY']:
@@ -150,13 +160,4 @@ if 'OPENAI_API_KEY' in os.environ and os.environ['OPENAI_API_KEY']:
150
  else:
151
  st.sidebar.warning("⚠️ OpenAI API Key not set. Please check your Hugging Face secrets configuration.")
152
 
153
- # Footer with credits
154
- st.divider()
155
- st.markdown(
156
- """
157
- <div class="ack">
158
- Acknowledgment: This app is based on <a href="https://github.com/jadouse5/openai-swarm-webscraper" target="_blank">Jad Tounsi El Azzoiani's work</a>.
159
- </div>
160
- """,
161
- unsafe_allow_html=True
162
- )
 
119
  # 2. Add the title at the top
120
  st.markdown('<div class="title">Swarm-based Web Content Analyzer 🧐</div>', unsafe_allow_html=True)
121
 
122
+ # 3. Add the description below the title
123
  st.markdown('<div class="description">Effortlessly extract, analyze, and summarize web content using multi-agents.</div>', unsafe_allow_html=True)
124
 
125
+ # 4. Add the image below the description
126
  st.image("./image-4.png", use_container_width=True)
127
 
128
+ # 5. Add Acknowledgement
129
+ st.markdown(
130
+ """
131
+ <div class="ack">
132
+ Acknowledgment: This app is based on <a href="https://github.com/jadouse5/openai-swarm-webscraper" target="_blank">Jad Tounsi El Azzoiani's work</a>.
133
+ </div>
134
+ """,
135
+ unsafe_allow_html=True
136
+ )
137
+
138
  fetch_openai_api_key()
139
 
140
  if 'OPENAI_API_KEY' in os.environ and os.environ['OPENAI_API_KEY']:
 
160
  else:
161
  st.sidebar.warning("⚠️ OpenAI API Key not set. Please check your Hugging Face secrets configuration.")
162
 
163
+