Spaces:
Running
Running
File size: 18,433 Bytes
7cb1544 7f93167 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 683d55b 7cb1544 af3ea02 73b622d af3ea02 758f35a af3ea02 758f35a af3ea02 50c64e7 af3ea02 7cb1544 af3ea02 bc094db af3ea02 bc094db af3ea02 7cb1544 af3ea02 ae7393c af3ea02 7bc3880 af3ea02 758f35a af3ea02 7cb1544 b859a53 ae7393c 7cb1544 ae7393c af3ea02 7cb1544 af3ea02 7cb1544 af3ea02 7cb1544 5a1c660 7cb1544 ae7393c 7cb1544 ae7393c 7cb1544 ae7393c 7cb1544 ae7393c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | # MistralChat.py (version LangGraph hybride RAG + SQL)
import streamlit as st
import logfire
try:
from utils.config import (
MISTRAL_API_KEY, MODEL_NAME,
APP_TITLE, NAME, LOGFIRE_TOKEN,
PG_HOST, PG_PORT, PG_DB, PG_ADMIN, POSTGRES_PASSWORD,
)
from utils.vector_store import VectorStoreManager
from utils.langgraph_app import build_graph, AppState # Graphe partagé RAG + SQL
from load_excel_to_db import main as load_excel_main
except ImportError as e:
st.error(f"Erreur d'importation: {e}. Vérifiez la structure de vos dossiers et les fichiers dans 'utils'.")
st.stop()
# --- Configuration de Logfire ---
if LOGFIRE_TOKEN:
logfire.configure(token=LOGFIRE_TOKEN, send_to_logfire=True)
else:
logfire.configure(send_to_logfire=False)
# --- Initialisation de la base SQL (si public.teams est vide) ---
@st.cache_resource
def init_sql_db():
"""Vérifie si public.teams est vide ; si oui, lance le pipeline ETL Excel → PostgreSQL.
Retourne une liste de tuples (niveau, message) pour affichage dans la sidebar."""
import psycopg2
messages = []
try:
conn = psycopg2.connect(
host=PG_HOST, port=PG_PORT, dbname=PG_DB,
user=PG_ADMIN, password=POSTGRES_PASSWORD,
)
with conn.cursor() as cur:
cur.execute("SELECT COUNT(*) FROM public.teams;")
count = cur.fetchone()[0]
conn.close()
if count == 0:
logfire.info("public.teams vide — démarrage du chargement Excel → PostgreSQL.")
messages.append(("info", "⏳ Base SQL vide — chargement des données en cours…"))
load_excel_main()
messages.append(("success", "✅ Données SQL chargées avec succès."))
else:
logfire.info(f"public.teams contient {count} ligne(s) — chargement ignoré.")
messages.append(("success", f"✅ Base SQL opérationnelle ({count} équipe(s) chargée(s))."))
except Exception as e:
logfire.error("Erreur lors de la vérification/initialisation de la base SQL", erreur=str(e))
messages.append(("warning", f"⚠️ Impossible de vérifier la base SQL : {e}"))
return messages
# --- Chargement du Vector Store (mis en cache) ---
@st.cache_resource
def get_vector_store_manager():
"""Retourne (manager_ou_None, liste_de_messages)."""
logfire.info("Tentative de chargement du VectorStoreManager...")
messages = []
try:
manager = VectorStoreManager()
if manager.index is None or not manager.document_chunks:
messages.append(("error", "❌ L'index vectoriel ou les chunks n'ont pas pu être chargés."))
messages.append(("warning", "Assurez-vous d'avoir exécuté 'python indexer.py' après avoir placé vos fichiers dans le dossier 'inputs'."))
logfire.error("Index Faiss ou chunks non trouvés/chargés par VectorStoreManager.")
return None, messages
logfire.info(f"VectorStoreManager chargé avec succès ({manager.index.ntotal} vecteurs).")
messages.append(("success", f"✅ Index vectoriel chargé ({manager.index.ntotal} vecteurs)."))
return manager, messages
except FileNotFoundError:
messages.append(("error", "❌ Fichiers d'index ou de chunks non trouvés."))
messages.append(("warning", "Veuillez exécuter 'python indexer.py' pour créer la base de connaissances."))
logfire.error("FileNotFoundError lors de l'init de VectorStoreManager.")
return None, messages
except Exception as e:
messages.append(("error", f"❌ Erreur inattendue lors du chargement du VectorStoreManager: {e}"))
logfire.exception("Erreur chargement VectorStoreManager")
return None, messages
sql_messages = init_sql_db()
vector_store_manager, vs_messages = get_vector_store_manager()
# --- Compilation du graphe LangGraph hybride (RAG + SQL) ---
@st.cache_resource
def get_langgraph(_vector_store_manager):
"""Construit et cache le graphe LangGraph (évite la recompilation à chaque rerun)."""
logfire.info("Compilation du graphe LangGraph...")
graph, llm = build_graph(_vector_store_manager)
logfire.info("Graphe LangGraph compilé et mis en cache.")
return graph
graph = get_langgraph(vector_store_manager)
# ==============================
# CSS Global — Design professionnel & responsive
# ==============================
st.markdown("""
<style>
/* ── Imports ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* ── Variables ── */
:root {
--clr-bg: #0D1117;
--clr-surface: #161B22;
--clr-border: #30363D;
--clr-primary: #FF6B35;
--clr-primary-d: #CC5520;
--clr-gold: #FFC857;
--clr-text: #E6EDF3;
--clr-muted: #8B949E;
--radius: 12px;
--shadow: 0 4px 24px rgba(0,0,0,.45);
}
/* ── Base ── */
html, body, [data-testid="stAppViewContainer"] {
background-color: var(--clr-bg) !important;
font-family: 'Inter', sans-serif !important;
color: var(--clr-text) !important;
}
[data-testid="stHeader"] { background: transparent !important; }
/* ── Page width — responsive ── */
[data-testid="stMain"] > div:first-child { padding: 0 !important; }
.block-container {
max-width: 900px !important;
padding: 1.5rem 1rem 5rem !important;
margin: 0 auto !important;
}
@media (max-width: 640px) {
.block-container { padding: 1rem .6rem 5rem !important; }
}
/* ── Barre de navigation hero ── */
.hero-bar {
display: flex;
align-items: center;
gap: 14px;
background: linear-gradient(135deg, #161B22 0%, #1A2332 100%);
border: 1px solid var(--clr-border);
border-radius: var(--radius);
padding: 14px 20px;
margin-bottom: 1.4rem;
box-shadow: var(--shadow);
}
.hero-bar img { height: 58px; width: auto; object-fit: contain; }
.hero-titles { display: flex; flex-direction: column; gap: 2px; }
.hero-titles h1 {
margin: 0; padding: 0;
font-size: clamp(1.1rem, 4vw, 1.6rem);
font-weight: 700;
background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-gold) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.2;
}
.hero-titles p {
margin: 0; padding: 0;
font-size: clamp(.65rem, 2.5vw, .78rem);
color: var(--clr-muted);
font-weight: 400;
letter-spacing: .04em;
}
.hero-badge {
margin-left: auto;
background: rgba(255,107,53,.12);
border: 1px solid rgba(255,107,53,.35);
color: var(--clr-primary);
font-size: .68rem;
font-weight: 600;
letter-spacing: .08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
white-space: nowrap;
}
@media (max-width: 480px) { .hero-badge { display: none; } }
/* ── Chips de suggestion de question (boutons Streamlit stylisés) ── */
div[data-testid="stHorizontalBlock"] button[kind="secondary"] {
border-radius: 20px !important;
border: 1px solid var(--clr-border) !important;
background: var(--clr-surface) !important;
color: var(--clr-text) !important;
font-size: .75rem !important;
font-weight: 500 !important;
padding: 4px 10px !important;
white-space: normal !important;
line-height: 1.3 !important;
transition: border-color .2s, background .2s, color .2s !important;
}
div[data-testid="stHorizontalBlock"] button[kind="secondary"]:hover {
border-color: var(--clr-primary) !important;
background: rgba(255,107,53,.1) !important;
color: var(--clr-primary) !important;
}
/* ── Messages de chat ── */
[data-testid="stChatMessage"] {
border-radius: var(--radius) !important;
padding: 14px 16px !important;
margin-bottom: 10px !important;
border: 1px solid var(--clr-border) !important;
background: var(--clr-surface) !important;
box-shadow: 0 2px 8px rgba(0,0,0,.3) !important;
transition: box-shadow .2s;
}
[data-testid="stChatMessage"]:hover { box-shadow: 0 4px 16px rgba(0,0,0,.4) !important; }
/* Message utilisateur — accent orange */
[data-testid="stChatMessage"][data-testid*="user"],
[data-testid="stChatMessage"]:has([data-testid="chatAvatarIcon-user"]) {
border-left: 3px solid var(--clr-primary) !important;
background: rgba(255,107,53,.06) !important;
}
/* Message assistant — accent doré */
[data-testid="stChatMessage"]:has([data-testid="chatAvatarIcon-assistant"]) {
border-left: 3px solid var(--clr-gold) !important;
}
/* ── Zone de saisie ── */
[data-testid="stChatInputContainer"] {
position: fixed !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
background: rgba(13,17,23,.92) !important;
backdrop-filter: blur(12px) !important;
border-top: 1px solid var(--clr-border) !important;
padding: .6rem 1rem !important;
z-index: 999 !important;
}
[data-testid="stChatInput"] {
background: var(--clr-surface) !important;
border: 1px solid var(--clr-border) !important;
border-radius: 24px !important;
color: var(--clr-text) !important;
font-size: .9rem !important;
max-width: 860px !important;
margin: 0 auto !important;
}
[data-testid="stChatInput"]:focus-within { border-color: var(--clr-primary) !important; }
/* ── Sidebar ── */
[data-testid="stSidebar"] {
background: var(--clr-surface) !important;
border-right: 1px solid var(--clr-border) !important;
}
[data-testid="stSidebar"] .stExpander {
background: var(--clr-bg) !important;
border: 1px solid var(--clr-border) !important;
border-radius: var(--radius) !important;
}
/* ── Bouton "Effacer" ── */
button[kind="secondary"] {
border-radius: 20px !important;
border: 1px solid var(--clr-border) !important;
background: transparent !important;
color: var(--clr-muted) !important;
font-size: .8rem !important;
transition: all .2s !important;
}
button[kind="secondary"]:hover {
border-color: var(--clr-primary) !important;
color: var(--clr-primary) !important;
}
/* ── Footer ── */
.footer-bar {
text-align: center;
font-size: .68rem;
color: var(--clr-muted);
padding: .5rem 0 .2rem;
letter-spacing: .04em;
border-top: 1px solid var(--clr-border);
margin-top: 1rem;
}
.footer-bar span { color: var(--clr-primary); font-weight: 600; }
/* ── Spinner personnalisé ── */
.thinking-bar {
display: flex;
align-items: center;
gap: 10px;
color: var(--clr-muted);
font-size: .85rem;
font-style: italic;
padding: 8px 4px 8px 48px;
}
.dot-flashing {
position: relative;
width: 8px; height: 8px;
border-radius: 50%;
background: var(--clr-primary);
animation: dot-flashing 1s infinite linear alternate;
animation-delay: .5s;
}
.dot-flashing::before, .dot-flashing::after {
content: '';
display: inline-block;
position: absolute;
top: 0;
width: 8px; height: 8px;
border-radius: 50%;
background: var(--clr-primary);
}
.dot-flashing::before { left: -12px; animation: dot-flashing 1s infinite alternate; animation-delay: 0s; }
.dot-flashing::after { left: 12px; animation: dot-flashing 1s infinite alternate; animation-delay: 1s; }
@keyframes dot-flashing {
0% { background: var(--clr-primary); }
100% { background: rgba(255,107,53,.2); }
}
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary); }
</style>
""", unsafe_allow_html=True)
# ==============================
# Interface Utilisateur Streamlit
# ==============================
# --- Sidebar : état des bases de données ---
with st.sidebar:
st.markdown("""
<div style='padding:10px 0 14px; text-align:center;'>
<div style='font-size:1.35rem; font-weight:700; color:#FF6B35; letter-spacing:.04em;'>🏀 NBA Analyst AI</div>
<div style='font-size:.72rem; color:#8B949E; margin-top:4px;'>Powered by Mistral · RAG · SQL</div>
</div>
""", unsafe_allow_html=True)
st.divider()
with st.expander("🗄️ État des bases de données", expanded=False):
st.markdown("**Base SQL (PostgreSQL)**")
for level, msg in sql_messages:
if level == "success": st.success(msg)
elif level == "info": st.info(msg)
elif level == "warning": st.warning(msg)
else: st.error(msg)
st.markdown("**Base vectorielle (FAISS)**")
for level, msg in vs_messages:
if level == "success": st.success(msg)
elif level == "info": st.info(msg)
elif level == "warning": st.warning(msg)
else: st.error(msg)
st.divider()
# Bouton effacer l'historique
if st.button("🗑️ Effacer la conversation", use_container_width=True):
st.session_state.messages = [
{"role": "assistant", "content": (
f"Bonjour ! Je suis votre analyste IA pour la {NAME}. "
"Posez-moi vos questions sur les équipes, les joueurs ou les statistiques.\n\n"
)}
]
st.rerun()
st.divider()
st.markdown("""
<div style='font-size:.7rem; color:#8B949E; line-height:1.6;'>
<b style='color:#E6EDF3;'>Comment utiliser ?</b><br>
Posez une question sur les équipes, joueurs ou statistiques NBA.<br><br>
🔎 <b>RAG</b> — recherche dans les documents<br>
🔢 <b>SQL</b> — interroge la base de données<br>
🤖 Le routeur choisit automatiquement.
</div>
""", unsafe_allow_html=True)
# --- Hero header ---
import base64, pathlib
def _img_to_b64(path: str) -> str | None:
try:
data = pathlib.Path(path).read_bytes()
return base64.b64encode(data).decode()
except Exception:
return None
logo_b64 = _img_to_b64("Docs/Logo_SportSee.png")
logo_html = (
f'<img src="data:image/png;base64,{logo_b64}" alt="SportSee" />'
if logo_b64 else
'<div style="font-size:2rem;">🏀</div>'
)
st.markdown(f"""
<div class="hero-bar">
{logo_html}
<div class="hero-titles">
<h1>{APP_TITLE}</h1>
<p>Votre analyste IA · Équipes · Joueurs · Statistiques</p>
</div>
<div class="hero-badge">⚡ Live AI</div>
</div>
""", unsafe_allow_html=True)
# --- Chips de questions suggérées ---
SUGGESTED = [
"🏆 Quelle équipe a le plus de points ?",
"👤 Top 3 rebondeurs offensifs des Lakers ?",
"📊 Équipe avec le code MIA ?",
"👤 Joueurs des 76ers ?",
"📅 Moyenne d'âge d'Atlanta ?",
]
if "chip_prompt" not in st.session_state:
st.session_state.chip_prompt = None
# Boutons chips cliquables
cols = st.columns(len(SUGGESTED))
for i, (col, label) in enumerate(zip(cols, SUGGESTED)):
with col:
if st.button(label, key=f"chip_{i}", use_container_width=True,
help=label, type="secondary"):
st.session_state.chip_prompt = label
# --- Initialisation de l'historique ---
if "messages" not in st.session_state:
st.session_state.messages = [
{"role": "assistant", "content": (
f"Bonjour ! Je suis votre analyste IA pour la {NAME}. "
"Posez-moi vos questions sur les équipes, les joueurs ou les statistiques.\n\n"
"NOTE : Je ne mémorise que nos 3 derniers échanges..."
)},
]
# Affichage de l'historique
for message in st.session_state.messages:
with st.chat_message(message["role"]):
# Utiliser la version affichée (avec badge route) si disponible
st.markdown(message.get("display", message["content"]))
# --- Gestion du prompt (saisie libre ou chip) ---
user_input = st.chat_input(f"Posez votre question sur la {NAME}...")
# Si un chip a été cliqué, on l'utilise comme prompt
if st.session_state.chip_prompt:
user_input = st.session_state.chip_prompt
st.session_state.chip_prompt = None
if user_input:
prompt = user_input
# 1. Afficher le message utilisateur
st.session_state.messages.append({"role": "user", "content": prompt})
with st.chat_message("user"):
st.markdown(prompt)
# 2. Invoquer le graphe LangGraph (routage automatique RAG ou SQL)
with st.chat_message("assistant"):
message_placeholder = st.empty()
message_placeholder.markdown("""
<div class="thinking-bar">
<div class="dot-flashing"></div>
Analyse en cours…
</div>
""", unsafe_allow_html=True)
try:
logfire.info(f"[Graph] Invocation pour : '{prompt}'")
# Exclure le message de bienvenue (index 0) et la question en cours (dernier)
chat_history = st.session_state.messages[1:-1]
result = graph.invoke({
"user_question": prompt,
"chat_history": chat_history,
})
response_content = result.get("final_answer", "Je n'ai pas pu générer de réponse.")
response_route = result.get("route", "unknown")
# Préfixe visuel de la route
route_badge = {"rag": "🔎 `[RAG]`", "sql": "🔢 `[SQL]`"}.get(response_route, "🤖 `[?]`")
response_display = f"{route_badge} {response_content}"
logfire.info(f"[Graph] Réponse finale obtenue (route={response_route}).")
except Exception as e:
response_content = "Je suis désolé, une erreur technique m'empêche de répondre. Veuillez réessayer."
response_display = response_content
response_route = "unknown"
st.error(f"Erreur lors de l'appel au graphe : {e}")
logfire.exception("Erreur lors de graph.invoke")
message_placeholder.markdown(response_display)
# 3. Ajouter la réponse à l'historique (avec route pour filtrage contextuel)
st.session_state.messages.append({
"role": "assistant",
"content": response_content, # contenu brut sans badge pour le contexte LLM
"route": response_route,
"display": response_display, # version affichée avec badge
})
|