new text + style
Browse files
app.py
CHANGED
@@ -16,18 +16,17 @@ def load_rag_pipeline():
|
|
16 |
|
17 |
rag = load_rag_pipeline()
|
18 |
|
19 |
-
|
20 |
-
st.html(
|
21 |
"""
|
22 |
<div style="display: flex; align-items: center; gap: 10px;">
|
23 |
-
<span style="font-size:
|
24 |
<h3 style="margin: 0;">Welcome to the GIZ Gender Strategy Assistant</h3>
|
25 |
</div>
|
26 |
-
<p>
|
27 |
"""
|
28 |
-
|
29 |
|
30 |
-
with st.expander("π
|
31 |
st.html(
|
32 |
"""
|
33 |
<h4>π‘ How does the app work?</h4>
|
@@ -47,20 +46,22 @@ with st.expander("π Further Information"):
|
|
47 |
<li>How does the strategy align with the <b>2030 Agenda</b>?</li>
|
48 |
<li>How is the success of the strategy measured and reviewed?</li>
|
49 |
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"""
|
51 |
)
|
52 |
|
53 |
st.html(
|
54 |
"""
|
55 |
-
|
56 |
-
<ul>
|
57 |
-
<li>π <a href="https://www.giz.de/de/downloads/giz-2019-de-genderstrategie.pdf" target="_blank"><b>GIZ Gender Strategy (2019, PDF)</b></a></li>
|
58 |
-
<li>π <a href="https://reporting.giz.de/2022/operating-responsibly/our-gender-strategy/index.html" target="_blank"><b>GIZ Gender Strategy Website</b></a></li>
|
59 |
-
<li>π <a href="https://www.blog-datalab.com/" target="_blank"><b>GIZ Data Lab Blog</b></a></li>
|
60 |
-
</ul>
|
61 |
-
|
62 |
<p>Feel free to explore and gain deeper insights into GIZβs commitment to gender equality! π</p>
|
63 |
<p><b>Now, go ahead and ask a question related to the GIZ Gender Strategy in the text field below!</b> π</p>
|
|
|
64 |
"""
|
65 |
)
|
66 |
|
|
|
16 |
|
17 |
rag = load_rag_pipeline()
|
18 |
|
19 |
+
st.html(
|
|
|
20 |
"""
|
21 |
<div style="display: flex; align-items: center; gap: 10px;">
|
22 |
+
<span style="font-size: 30px;">π€</span>
|
23 |
<h3 style="margin: 0;">Welcome to the GIZ Gender Strategy Assistant</h3>
|
24 |
</div>
|
25 |
+
<p>The GIZ Gender Strategy Chatbot enables users to explore GIZβs Gender Strategy through open, context-aware questions. It provides insights into how gender equality is integrated into operations, business development, and corporate values. Aligned with GIZβs vision, the assistant makes gender-related topics accessible, supporting users in understanding policies, enhancing gender competence, and promoting inclusive practices.</p>
|
26 |
"""
|
27 |
+
)
|
28 |
|
29 |
+
with st.expander("π Background Information & Example Questions"):
|
30 |
st.html(
|
31 |
"""
|
32 |
<h4>π‘ How does the app work?</h4>
|
|
|
46 |
<li>How does the strategy align with the <b>2030 Agenda</b>?</li>
|
47 |
<li>How is the success of the strategy measured and reviewed?</li>
|
48 |
</ul>
|
49 |
+
|
50 |
+
<h4>π Further resources:</h4>
|
51 |
+
<ul>
|
52 |
+
<li>π <a href="https://www.giz.de/en/downloads/giz-2019-en-gender-strategy.pdf" target="_blank" rel="noopener noreferrer"><b>GIZ Gender Strategy (2019, PDF)</b></a></li>
|
53 |
+
<li>π <a href="https://reporting.giz.de/2022/operating-responsibly/our-gender-strategy/index.html" target="_blank" rel="noopener noreferrer"><b>GIZ Gender Strategy Website</b></a></li>
|
54 |
+
<li>π <a href="https://www.blog-datalab.com/" target="_blank" rel="noopener noreferrer"><b>GIZ Data Lab Blog</b></a></li>
|
55 |
+
</ul>
|
56 |
"""
|
57 |
)
|
58 |
|
59 |
st.html(
|
60 |
"""
|
61 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
<p>Feel free to explore and gain deeper insights into GIZβs commitment to gender equality! π</p>
|
63 |
<p><b>Now, go ahead and ask a question related to the GIZ Gender Strategy in the text field below!</b> π</p>
|
64 |
+
|
65 |
"""
|
66 |
)
|
67 |
|