Update app.py
Browse files
app.py
CHANGED
@@ -110,13 +110,19 @@ st.markdown(
|
|
110 |
unsafe_allow_html=True,
|
111 |
)
|
112 |
|
113 |
-
# 1. Add
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
st.markdown('<div class="title">Swarm-based Web Content Analyzer π§</div>', unsafe_allow_html=True)
|
115 |
|
116 |
-
#
|
117 |
st.markdown('<div class="description">Effortlessly extract, analyze, and summarize web content using multi-agents.</div>', unsafe_allow_html=True)
|
118 |
|
119 |
-
#
|
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 |
|