LaurentTRIPIED
commited on
Commit
·
f68cea8
1
Parent(s):
72b2576
IA V1 01
Browse files- IA _RSE/analyseActionsRSE.py +7 -0
- app.py +10 -0
IA _RSE/analyseActionsRSE.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
def display_analyse_actions_rse():
|
4 |
+
return 0
|
5 |
+
|
6 |
+
if __name__ == "__main__":
|
7 |
+
display_analyse_actions_rse()
|
app.py
CHANGED
@@ -5,6 +5,8 @@ from statistiques import main as display_statistics
|
|
5 |
from ActionsRSE import display_actions_rse
|
6 |
|
7 |
# Import des fonctions IA depuis le sous-répertoire
|
|
|
|
|
8 |
# from IA_COMMERCE.Doc_Ref_COMMERCE import display_doc_ref_commerce
|
9 |
# from IA_COMMERCE.BP_COMMERCE import display_bp_commerce
|
10 |
# from IA_COMMERCE.Financement_TE_COMMERCE import display_Financement_TE_Commerce
|
@@ -45,6 +47,14 @@ def main():
|
|
45 |
# elif ia_mode == "Dialogue IA":
|
46 |
# display_ia_commerce()
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
# Instructions communes à toutes les sections
|
49 |
st.sidebar.markdown("---")
|
50 |
st.sidebar.markdown("Powered by **bziiit IA RSE**")
|
|
|
5 |
from ActionsRSE import display_actions_rse
|
6 |
|
7 |
# Import des fonctions IA depuis le sous-répertoire
|
8 |
+
from IA_RSE.analyseActionsRSE import display_analyse_actions_rse
|
9 |
+
|
10 |
# from IA_COMMERCE.Doc_Ref_COMMERCE import display_doc_ref_commerce
|
11 |
# from IA_COMMERCE.BP_COMMERCE import display_bp_commerce
|
12 |
# from IA_COMMERCE.Financement_TE_COMMERCE import display_Financement_TE_Commerce
|
|
|
47 |
# elif ia_mode == "Dialogue IA":
|
48 |
# display_ia_commerce()
|
49 |
|
50 |
+
elif section_principale == "IA RSE":
|
51 |
+
ia_mode = st.sidebar.radio(
|
52 |
+
"Choisissez votre onglet",
|
53 |
+
["Analyse actions RSE"]
|
54 |
+
)
|
55 |
+
if ia_mode == "Documents Référence":
|
56 |
+
display_analyse_action_rse()
|
57 |
+
|
58 |
# Instructions communes à toutes les sections
|
59 |
st.sidebar.markdown("---")
|
60 |
st.sidebar.markdown("Powered by **bziiit IA RSE**")
|