DrishtiSharma commited on
Commit
acfeab2
Β·
verified Β·
1 Parent(s): 686975f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -110,13 +110,19 @@ st.markdown(
110
  unsafe_allow_html=True,
111
  )
112
 
113
- # 1. Add the title at the top
 
 
 
 
 
 
114
  st.markdown('<div class="title">Swarm-based Web Content Analyzer 🧐</div>', unsafe_allow_html=True)
115
 
116
- # 2. Add the description below the image
117
  st.markdown('<div class="description">Effortlessly extract, analyze, and summarize web content using multi-agents.</div>', unsafe_allow_html=True)
118
 
119
- # 3. Add the image below the title
120
  st.image("./image-4.png", use_container_width=True)
121
 
122
 
 
110
  unsafe_allow_html=True,
111
  )
112
 
113
+ # 1. Add Acknowledgment as an Info Bar
114
+ st.info(
115
+ "Acknowledgment: This app is based on [Jad Tounsi El Azzoiani's work](https://github.com/jadouse5/openai-swarm-webscraper).",
116
+ icon="ℹ️"
117
+ )
118
+
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