NiborKowon commited on
Commit
d119df4
Β·
verified Β·
1 Parent(s): 237cb84

new text + style

Browse files
Files changed (1) hide show
  1. app.py +14 -13
app.py CHANGED
@@ -16,18 +16,17 @@ def load_rag_pipeline():
16
 
17
  rag = load_rag_pipeline()
18
 
19
- with st.chat_message(name="ai", avatar=":material/smart_toy:"):
20
- st.html(
21
  """
22
  <div style="display: flex; align-items: center; gap: 10px;">
23
- <span style="font-size: 36px;">πŸ€–</span>
24
  <h3 style="margin: 0;">Welcome to the GIZ Gender Strategy Assistant</h3>
25
  </div>
26
- <p>This assistant provides <b>reliable answers</b> about the <b>GIZ Gender Strategy (2019)</b>, helping you quickly access key insights from the official document.</p>
27
  """
28
- )
29
 
30
- with st.expander("πŸ“– Further Information"):
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
- <h4>πŸ“Œ Further resources:</h4>
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