Update app.py
Browse files
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
|
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
|
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 |
-
|
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 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|