Spaces:
Sleeping
Sleeping
cd@bziiit.com commited on
Commit ·
fa9f568
1
Parent(s): f7ba7fa
feat: Enhance sidebar with documentation and contributor information
Browse files- Added a documentation link and evaluation app section to the sidebar.
- Included contributor details and an image for branding.
- Updated sidebar styling for improved readability.
- app.py +22 -0
- assets/bziiit.png +0 -0
app.py
CHANGED
|
@@ -85,6 +85,28 @@ def main():
|
|
| 85 |
}
|
| 86 |
)
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
pg.run()
|
| 89 |
|
| 90 |
|
|
|
|
| 85 |
}
|
| 86 |
)
|
| 87 |
|
| 88 |
+
st.sidebar.markdown("### Documentation")
|
| 89 |
+
st.sidebar.markdown("*Documentation :* [*Lien*]({})".format("https://docs.google.com/presentation/d/1b-cnCKge1qRBS26U5FfMScQPco4gZTn7tN1idhccsso/edit?usp=sharing"))
|
| 90 |
+
st.sidebar.markdown("*Evaluation App. IA :*")
|
| 91 |
+
|
| 92 |
+
st.sidebar.markdown("---")
|
| 93 |
+
st.sidebar.image("./assets/bziiit.png", width=100)
|
| 94 |
+
|
| 95 |
+
st.sidebar.markdown("""
|
| 96 |
+
<ul style="padding-left:10px;">
|
| 97 |
+
<li style="margin:0;"><em>Contributeur AFNOR SPEC IA FRUGAL</em></li>
|
| 98 |
+
<li style="margin:0;"><em>Certifié AFNOR COMPETENCES</em></li>
|
| 99 |
+
<li style="margin:0;"><em>Membre HUB FRANCE IA</em></li>
|
| 100 |
+
<li style="margin:0;"><em>Membre OSFARM</em></li>
|
| 101 |
+
</ul>
|
| 102 |
+
""", unsafe_allow_html=True)
|
| 103 |
+
|
| 104 |
+
st.sidebar.markdown("")
|
| 105 |
+
st.sidebar.markdown("<style> p { margin : 0px ; } </style>",unsafe_allow_html=True)
|
| 106 |
+
|
| 107 |
+
st.sidebar.markdown("2025 : Open source en Licence MIT")
|
| 108 |
+
st.sidebar.markdown("info@bziiit.com")
|
| 109 |
+
|
| 110 |
pg.run()
|
| 111 |
|
| 112 |
|
assets/bziiit.png
ADDED
|