Compare commits

..

3 Commits

Author SHA1 Message Date
397e5b3307 style(css) : mise à jour de la bonne indentation 2025-06-15 11:59:04 +02:00
e926f9c73a fix(pgpt) : suite à montée de version de docker
régénération du docker-compose.yaml pour pouvoir relancer le service
2025-06-15 11:56:24 +02:00
29f36f6442 fix(session) : problème de cache de config.py
mise en place de la génération dynamique de toutes les variables
dépendant de session_id
2025-06-15 11:55:26 +02:00
5 changed files with 179 additions and 198 deletions

View File

@ -1,6 +1,7 @@
import streamlit as st import streamlit as st
from config import ENV from config import ENV
from utils.translations import _ from utils.translations import _
from utils.persistance import get_session_id
def afficher_entete(): def afficher_entete():
@ -11,7 +12,7 @@ def afficher_entete():
""" """
if ENV == "dev": if ENV == "dev":
header += f"<p>🔧 {_("app.dev_mode")}</p>" header += f"<p>🔧 {_("app.dev_mode")} Session : {get_session_id()}</p>"
else: else:
header += f"<p>{_("header.subtitle")}</p>" header += f"<p>{_("header.subtitle")}</p>"

View File

@ -1,5 +1,8 @@
import utils.persistance
utils.persistance.update_session_paths()
import streamlit as st import streamlit as st
from utils.persistance import get_champ_statut from utils.persistance import get_champ_statut, get_session_id
st.set_page_config( st.set_page_config(
page_title="Fabnum Analyse de chaîne", page_title="Fabnum Analyse de chaîne",
@ -88,8 +91,6 @@ init_translations()
# Pour tester d'autres langues, décommenter cette ligne : # Pour tester d'autres langues, décommenter cette ligne :
set_language("fr") set_language("fr")
session_id = st.context.headers.get("x-session-id")
# #
# Important # Important
# Avec Selinux, il faut mettre les bons droits : # Avec Selinux, il faut mettre les bons droits :
@ -97,6 +98,7 @@ session_id = st.context.headers.get("x-session-id")
# sudo semanage fcontext -a -t var_log_t '/var/log/nginx/fabnum-public\.access\.log' # sudo semanage fcontext -a -t var_log_t '/var/log/nginx/fabnum-public\.access\.log'
# sudo restorecon -v /var/log/nginx/fabnum-public.access.log # sudo restorecon -v /var/log/nginx/fabnum-public.access.log
# #
session_id = get_session_id()
def get_total_bytes_for_session(session_id): def get_total_bytes_for_session(session_id):
total_bytes = 0 total_bytes = 0
try: try:
@ -158,7 +160,7 @@ def fermer_page():
st.markdown("""</section>""", unsafe_allow_html=True) st.markdown("""</section>""", unsafe_allow_html=True)
st.markdown("</main>", unsafe_allow_html=True) st.markdown("</main>", unsafe_allow_html=True)
total_bytes = get_total_bytes_for_session(session_id) total_bytes = get_total_bytes_for_session(get_session_id())
afficher_pied_de_page() afficher_pied_de_page()
afficher_impact(total_bytes) afficher_impact(total_bytes)
@ -176,7 +178,6 @@ ia_nalyse_tab = _("navigation.ia_nalyse")
plan_d_action_tab = _("navigation.plan_d_action") plan_d_action_tab = _("navigation.plan_d_action")
visualisations_tab = _("navigation.visualisations") visualisations_tab = _("navigation.visualisations")
from utils.persistance import get_champ_statut
navigation_onglet = get_champ_statut("navigation_onglet") navigation_onglet = get_champ_statut("navigation_onglet")
if navigation_onglet == instructions_tab: if navigation_onglet == instructions_tab:

View File

@ -3,10 +3,8 @@ services:
#---- Private-GPT services --------- #---- Private-GPT services ---------
#----------------------------------- #-----------------------------------
# Private-GPT service for the Ollama CPU and GPU modes
# This service builds from an external Dockerfile and runs the Ollama mode.
private-gpt-ollama: private-gpt-ollama:
image: ${PGPT_IMAGE:-zylonai/private-gpt}:${PGPT_TAG:-0.6.2}-ollama # x-release-please-version image: ${PGPT_IMAGE:-zylonai/private-gpt}:${PGPT_TAG:-0.6.2}-ollama
user: root user: root
build: build:
context: . context: .
@ -29,12 +27,10 @@ services:
- ollama-api - ollama-api
depends_on: depends_on:
ollama: ollama:
condition: service_healthy condition: service_started
# Private-GPT service for the local mode
# This service builds from a local Dockerfile and runs the application in local mode.
private-gpt-llamacpp-cpu: private-gpt-llamacpp-cpu:
image: ${PGPT_IMAGE:-zylonai/private-gpt}:${PGPT_TAG:-0.6.2}-llamacpp-cpu # x-release-please-version image: ${PGPT_IMAGE:-zylonai/private-gpt}:${PGPT_TAG:-0.6.2}-llamacpp-cpu
user: root user: root
build: build:
context: . context: .
@ -56,22 +52,8 @@ services:
#---- Ollama services -------------- #---- Ollama services --------------
#----------------------------------- #-----------------------------------
# Traefik reverse proxy for the Ollama service
# This will route requests to the Ollama service based on the profile.
ollama: ollama:
image: traefik:v2.10 image: traefik:v2.10
healthcheck:
test:
[
"CMD",
"sh",
"-c",
"wget -q --spider http://ollama:11434 || exit 1",
]
interval: 10s
retries: 3
start_period: 5s
timeout: 5s
ports: ports:
- "127.0.0.1:8080:8080" - "127.0.0.1:8080:8080"
command: command:
@ -86,24 +68,26 @@ services:
- ./.docker/router.yml:/etc/router.yml:ro - ./.docker/router.yml:/etc/router.yml:ro
extra_hosts: extra_hosts:
- "host.docker.internal:host-gateway" - "host.docker.internal:host-gateway"
security_opt:
- label:disable
profiles: profiles:
- "" - ""
- ollama-cpu - ollama-cpu
- ollama-cuda - ollama-cuda
- ollama-api - ollama-api
# Ollama service for the CPU mode
ollama-cpu: ollama-cpu:
image: ollama/ollama:latest image: ollama/ollama:latest
ports: ports:
- "127.0.0.1:11434:11434" - "127.0.0.1:11434:11434"
volumes: volumes:
- ./models:/root/.ollama:Z - ./models:/root/.ollama:Z
healthcheck:
disable: true
profiles: profiles:
- "" - ""
- ollama-cpu - ollama-cpu
# Ollama service for the CUDA mode
ollama-cuda: ollama-cuda:
image: ollama/ollama:latest image: ollama/ollama:latest
ports: ports:

View File

@ -8,22 +8,17 @@ from pathlib import Path
load_dotenv(".env") load_dotenv(".env")
def initialise(): def get_session_id() -> str:
SAVE_SESSIONS_PATH.mkdir(parents=True, exist_ok=True)
def get_session_id():
if "session_id" not in st.session_state:
session_id = st.context.headers.get("x-session-id", "anonymous") session_id = st.context.headers.get("x-session-id", "anonymous")
st.session_state["session_id"] = session_id
else:
session_id = st.session_state["session_id"]
return session_id return session_id
def update_session_paths():
global SAVE_STATUT, SAVE_SESSIONS_PATH, SAVE_STATUT_PATH
SAVE_STATUT = os.getenv("SAVE_STATUT", "statut_general.json") SAVE_STATUT = os.getenv("SAVE_STATUT", "statut_general.json")
session_id = get_session_id() SAVE_SESSIONS_PATH = Path(f"tmp/sessions/{get_session_id()}")
SAVE_SESSIONS_PATH = Path(f"tmp/sessions/{session_id}") SAVE_SESSIONS_PATH.mkdir(parents=True, exist_ok=True)
SAVE_STATUT_PATH = SAVE_SESSIONS_PATH / SAVE_STATUT SAVE_STATUT_PATH = SAVE_SESSIONS_PATH / SAVE_STATUT
initialise()
def _maj_champ(fichier, cle: str, contenu: str = "") -> bool: def _maj_champ(fichier, cle: str, contenu: str = "") -> bool: