Update app.py
Browse files
app.py
CHANGED
@@ -574,36 +574,35 @@ elif "deepseek-R1" in available_models:
|
|
574 |
default_index = available_models.index("deepseek-R1")
|
575 |
|
576 |
# Compact header - everything perfectly aligned at same height
|
|
|
577 |
st.markdown("""
|
578 |
<div style='
|
579 |
display: flex;
|
580 |
align-items: center;
|
581 |
-
justify-content:
|
582 |
-
padding: 0.5rem
|
583 |
-
|
|
|
|
|
584 |
margin-bottom: 1rem;
|
585 |
-
width: 100%;
|
586 |
'>
|
587 |
<img src='https://sustainability-lab.github.io/images/logo_light.svg'
|
588 |
-
style='height:
|
589 |
-
|
590 |
<h1 style='
|
591 |
margin: 0;
|
592 |
-
font-size:
|
593 |
font-weight: 700;
|
594 |
-
color:
|
595 |
-
|
596 |
-
|
597 |
'>VayuChat</h1>
|
598 |
-
|
599 |
<span style='
|
600 |
-
font-size:
|
601 |
-
color:
|
|
|
|
|
602 |
font-weight: 500;
|
603 |
-
|
604 |
-
flex-shrink: 0;
|
605 |
-
white-space: nowrap;
|
606 |
-
'>AI Air Quality Analysis<br/>Sustainability Lab, IIT Gandhinagar</span>
|
607 |
</div>
|
608 |
""", unsafe_allow_html=True)
|
609 |
|
|
|
574 |
default_index = available_models.index("deepseek-R1")
|
575 |
|
576 |
# Compact header - everything perfectly aligned at same height
|
577 |
+
|
578 |
st.markdown("""
|
579 |
<div style='
|
580 |
display: flex;
|
581 |
align-items: center;
|
582 |
+
justify-content: center;
|
583 |
+
padding: 0.5rem 0;
|
584 |
+
gap: 15px;
|
585 |
+
border-bottom: 1px solid
|
586 |
+
#e5e7eb;
|
587 |
margin-bottom: 1rem;
|
|
|
588 |
'>
|
589 |
<img src='https://sustainability-lab.github.io/images/logo_light.svg'
|
590 |
+
style='height: 40px;' />
|
|
|
591 |
<h1 style='
|
592 |
margin: 0;
|
593 |
+
font-size: 1.8rem;
|
594 |
font-weight: 700;
|
595 |
+
color:
|
596 |
+
#1f2937;
|
597 |
+
line-height: 70px;
|
598 |
'>VayuChat</h1>
|
|
|
599 |
<span style='
|
600 |
+
font-size: 0.9rem;
|
601 |
+
color:
|
602 |
+
#6b7280;
|
603 |
+
line-height: 40px;
|
604 |
font-weight: 500;
|
605 |
+
'>AI Air Quality Analysis • Sustainability Lab, IIT Gandhinagar</span>
|
|
|
|
|
|
|
606 |
</div>
|
607 |
""", unsafe_allow_html=True)
|
608 |
|