gauthierlmd commited on
Commit
bc07e4a
·
verified ·
1 Parent(s): 6b52c55

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +753 -0
app.py ADDED
@@ -0,0 +1,753 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import re
3
+ import json
4
+ import time
5
+ import traceback
6
+ from pathlib import Path
7
+ from typing import Dict, Any, List, Tuple
8
+
9
+ import pandas as pd
10
+ import gradio as gr
11
+ import papermill as pm
12
+ import plotly.graph_objects as go
13
+
14
+ # Optional LLM (HuggingFace Inference API)
15
+ try:
16
+ from huggingface_hub import InferenceClient
17
+ except Exception:
18
+ InferenceClient = None
19
+
20
+ # =========================================================
21
+ # CONFIG
22
+ # =========================================================
23
+
24
+ BASE_DIR = Path(__file__).resolve().parent
25
+
26
+ NB1 = os.environ.get("NB1", "datacreation.ipynb").strip()
27
+ NB2 = os.environ.get("NB2", "pythonanalysis.ipynb").strip()
28
+
29
+ RUNS_DIR = BASE_DIR / "runs"
30
+ ART_DIR = BASE_DIR / "artifacts"
31
+ PY_FIG_DIR = ART_DIR / "py" / "figures"
32
+ PY_TAB_DIR = ART_DIR / "py" / "tables"
33
+
34
+ PAPERMILL_TIMEOUT = int(os.environ.get("PAPERMILL_TIMEOUT", "1800"))
35
+ MAX_PREVIEW_ROWS = int(os.environ.get("MAX_FILE_PREVIEW_ROWS", "50"))
36
+ MAX_LOG_CHARS = int(os.environ.get("MAX_LOG_CHARS", "8000"))
37
+
38
+ HF_API_KEY = os.environ.get("HF_API_KEY", "").strip()
39
+ MODEL_NAME = os.environ.get("MODEL_NAME", "deepseek-ai/DeepSeek-R1").strip()
40
+ HF_PROVIDER = os.environ.get("HF_PROVIDER", "novita").strip()
41
+ N8N_WEBHOOK_URL = os.environ.get("N8N_WEBHOOK_URL", "").strip()
42
+
43
+ LLM_ENABLED = bool(HF_API_KEY) and InferenceClient is not None
44
+ llm_client = (
45
+ InferenceClient(provider=HF_PROVIDER, api_key=HF_API_KEY)
46
+ if LLM_ENABLED
47
+ else None
48
+ )
49
+
50
+ # =========================================================
51
+ # HELPERS
52
+ # =========================================================
53
+
54
+ def ensure_dirs():
55
+ for p in [RUNS_DIR, ART_DIR, PY_FIG_DIR, PY_TAB_DIR]:
56
+ p.mkdir(parents=True, exist_ok=True)
57
+
58
+ def stamp():
59
+ return time.strftime("%Y%m%d-%H%M%S")
60
+
61
+ def tail(text: str, n: int = MAX_LOG_CHARS) -> str:
62
+ return (text or "")[-n:]
63
+
64
+ def _ls(dir_path: Path, exts: Tuple[str, ...]) -> List[str]:
65
+ if not dir_path.is_dir():
66
+ return []
67
+ return sorted(p.name for p in dir_path.iterdir() if p.is_file() and p.suffix.lower() in exts)
68
+
69
+ def _read_csv(path: Path) -> pd.DataFrame:
70
+ return pd.read_csv(path, nrows=MAX_PREVIEW_ROWS)
71
+
72
+ def _read_json(path: Path):
73
+ with path.open(encoding="utf-8") as f:
74
+ return json.load(f)
75
+
76
+ def artifacts_index() -> Dict[str, Any]:
77
+ return {
78
+ "python": {
79
+ "figures": _ls(PY_FIG_DIR, (".png", ".jpg", ".jpeg")),
80
+ "tables": _ls(PY_TAB_DIR, (".csv", ".json")),
81
+ },
82
+ }
83
+
84
+ # =========================================================
85
+ # PIPELINE RUNNERS
86
+ # =========================================================
87
+
88
+ def run_notebook(nb_name: str) -> str:
89
+ ensure_dirs()
90
+ nb_in = BASE_DIR / nb_name
91
+ if not nb_in.exists():
92
+ return f"ERROR: {nb_name} not found."
93
+ nb_out = RUNS_DIR / f"run_{stamp()}_{nb_name}"
94
+ pm.execute_notebook(
95
+ input_path=str(nb_in),
96
+ output_path=str(nb_out),
97
+ cwd=str(BASE_DIR),
98
+ log_output=True,
99
+ progress_bar=False,
100
+ request_save_on_cell_execute=True,
101
+ execution_timeout=PAPERMILL_TIMEOUT,
102
+ )
103
+ return f"Executed {nb_name}"
104
+
105
+
106
+ def run_datacreation() -> str:
107
+ try:
108
+ log = run_notebook(NB1)
109
+ csvs = [f.name for f in BASE_DIR.glob("*.csv")]
110
+ return f"OK {log}\n\nCSVs now in /app:\n" + "\n".join(f" - {c}" for c in sorted(csvs))
111
+ except Exception as e:
112
+ return f"FAILED {e}\n\n{traceback.format_exc()[-2000:]}"
113
+
114
+
115
+ def run_pythonanalysis() -> str:
116
+ try:
117
+ log = run_notebook(NB2)
118
+ idx = artifacts_index()
119
+ figs = idx["python"]["figures"]
120
+ tabs = idx["python"]["tables"]
121
+ return (
122
+ f"OK {log}\n\n"
123
+ f"Figures: {', '.join(figs) or '(none)'}\n"
124
+ f"Tables: {', '.join(tabs) or '(none)'}"
125
+ )
126
+ except Exception as e:
127
+ return f"FAILED {e}\n\n{traceback.format_exc()[-2000:]}"
128
+
129
+
130
+ def run_full_pipeline() -> str:
131
+ logs = []
132
+ logs.append("=" * 50)
133
+ logs.append("STEP 1/2: Data Creation (web scraping + synthetic data)")
134
+ logs.append("=" * 50)
135
+ logs.append(run_datacreation())
136
+ logs.append("")
137
+ logs.append("=" * 50)
138
+ logs.append("STEP 2/2: Python Analysis (sentiment, ARIMA, dashboard)")
139
+ logs.append("=" * 50)
140
+ logs.append(run_pythonanalysis())
141
+ return "\n".join(logs)
142
+
143
+
144
+ # =========================================================
145
+ # GALLERY LOADERS
146
+ # =========================================================
147
+
148
+ def _load_all_figures() -> List[Tuple[str, str]]:
149
+ """Return list of (filepath, caption) for Gallery."""
150
+ items = []
151
+ for p in sorted(PY_FIG_DIR.glob("*.png")):
152
+ items.append((str(p), p.stem.replace('_', ' ').title()))
153
+ return items
154
+
155
+
156
+ def _load_table_safe(path: Path) -> pd.DataFrame:
157
+ try:
158
+ if path.suffix == ".json":
159
+ obj = _read_json(path)
160
+ if isinstance(obj, dict):
161
+ return pd.DataFrame([obj])
162
+ return pd.DataFrame(obj)
163
+ return _read_csv(path)
164
+ except Exception as e:
165
+ return pd.DataFrame([{"error": str(e)}])
166
+
167
+
168
+ def refresh_gallery():
169
+ """Called when user clicks Refresh on Gallery tab."""
170
+ figures = _load_all_figures()
171
+ idx = artifacts_index()
172
+
173
+ table_choices = list(idx["python"]["tables"])
174
+
175
+ default_df = pd.DataFrame()
176
+ if table_choices:
177
+ default_df = _load_table_safe(PY_TAB_DIR / table_choices[0])
178
+
179
+ return (
180
+ figures if figures else [],
181
+ gr.update(choices=table_choices, value=table_choices[0] if table_choices else None),
182
+ default_df,
183
+ )
184
+
185
+
186
+ def on_table_select(choice: str):
187
+ if not choice:
188
+ return pd.DataFrame([{"hint": "Select a table above."}])
189
+ path = PY_TAB_DIR / choice
190
+ if not path.exists():
191
+ return pd.DataFrame([{"error": f"File not found: {choice}"}])
192
+ return _load_table_safe(path)
193
+
194
+
195
+ # =========================================================
196
+ # KPI LOADER
197
+ # =========================================================
198
+
199
+ def load_kpis() -> Dict[str, Any]:
200
+ for candidate in [PY_TAB_DIR / "kpis.json", PY_FIG_DIR / "kpis.json"]:
201
+ if candidate.exists():
202
+ try:
203
+ return _read_json(candidate)
204
+ except Exception:
205
+ pass
206
+ return {}
207
+
208
+
209
+ # =========================================================
210
+ # AI DASHBOARD -- LLM picks what to display
211
+ # =========================================================
212
+
213
+ DASHBOARD_SYSTEM = """You are an AI dashboard assistant for a book-sales analytics app.
214
+ The user asks questions or requests about their data. You have access to pre-computed
215
+ artifacts from a Python analysis pipeline.
216
+ AVAILABLE ARTIFACTS (only reference ones that exist):
217
+ {artifacts_json}
218
+ KPI SUMMARY: {kpis_json}
219
+ YOUR JOB:
220
+ 1. Answer the user's question conversationally using the KPIs and your knowledge of the artifacts.
221
+ 2. At the END of your response, output a JSON block (fenced with ```json ... ```) that tells
222
+ the dashboard which artifact to display. The JSON must have this shape:
223
+ {{"show": "figure"|"table"|"none", "scope": "python", "filename": "..."}}
224
+ - Use "show": "figure" to display a chart image.
225
+ - Use "show": "table" to display a CSV/JSON table.
226
+ - Use "show": "none" if no artifact is relevant.
227
+ RULES:
228
+ - If the user asks about sales trends or forecasting by title, show sales_trends or arima figures.
229
+ - If the user asks about sentiment, show sentiment figure or sentiment_counts table.
230
+ - If the user asks about forecast accuracy or ARIMA, show arima figures.
231
+ - If the user asks about top sellers, show top_titles_by_units_sold.csv.
232
+ - If the user asks a general data question, pick the most relevant artifact.
233
+ - Keep your answer concise (2-4 sentences), then the JSON block.
234
+ """
235
+
236
+ JSON_BLOCK_RE = re.compile(r"```json\s*(\{.*?\})\s*```", re.DOTALL)
237
+ FALLBACK_JSON_RE = re.compile(r"\{[^{}]*\"show\"[^{}]*\}", re.DOTALL)
238
+
239
+
240
+ def _parse_display_directive(text: str) -> Dict[str, str]:
241
+ m = JSON_BLOCK_RE.search(text)
242
+ if m:
243
+ try:
244
+ return json.loads(m.group(1))
245
+ except json.JSONDecodeError:
246
+ pass
247
+ m = FALLBACK_JSON_RE.search(text)
248
+ if m:
249
+ try:
250
+ return json.loads(m.group(0))
251
+ except json.JSONDecodeError:
252
+ pass
253
+ return {"show": "none"}
254
+
255
+
256
+ def _clean_response(text: str) -> str:
257
+ """Strip the JSON directive block from the displayed response."""
258
+ return JSON_BLOCK_RE.sub("", text).strip()
259
+
260
+
261
+ def _n8n_call(msg: str) -> Tuple[str, Dict]:
262
+ """Call the student's n8n webhook and return (reply, directive)."""
263
+ import requests as req
264
+ try:
265
+ resp = req.post(N8N_WEBHOOK_URL, json={"question": msg}, timeout=20)
266
+ data = resp.json()
267
+ answer = data.get("answer", "No response from n8n workflow.")
268
+ chart = data.get("chart", "none")
269
+ if chart and chart != "none":
270
+ return answer, {"show": "figure", "chart": chart}
271
+ return answer, {"show": "none"}
272
+ except Exception as e:
273
+ return f"n8n error: {e}. Falling back to keyword matching.", None
274
+
275
+
276
+ def ai_chat(user_msg: str, history: list):
277
+ """Chat function for the AI Dashboard tab."""
278
+ if not user_msg or not user_msg.strip():
279
+ return history, "", None, None
280
+
281
+ idx = artifacts_index()
282
+ kpis = load_kpis()
283
+
284
+ # Priority: n8n webhook > HF LLM > keyword fallback
285
+ if N8N_WEBHOOK_URL:
286
+ reply, directive = _n8n_call(user_msg)
287
+ if directive is None:
288
+ reply_fb, directive = _keyword_fallback(user_msg, idx, kpis)
289
+ reply += "\n\n" + reply_fb
290
+ elif not LLM_ENABLED:
291
+ reply, directive = _keyword_fallback(user_msg, idx, kpis)
292
+ else:
293
+ system = DASHBOARD_SYSTEM.format(
294
+ artifacts_json=json.dumps(idx, indent=2),
295
+ kpis_json=json.dumps(kpis, indent=2) if kpis else "(no KPIs yet, run the pipeline first)",
296
+ )
297
+ msgs = [{"role": "system", "content": system}]
298
+ for entry in (history or [])[-6:]:
299
+ msgs.append(entry)
300
+ msgs.append({"role": "user", "content": user_msg})
301
+
302
+ try:
303
+ r = llm_client.chat_completion(
304
+ model=MODEL_NAME,
305
+ messages=msgs,
306
+ temperature=0.3,
307
+ max_tokens=600,
308
+ stream=False,
309
+ )
310
+ raw = (
311
+ r["choices"][0]["message"]["content"]
312
+ if isinstance(r, dict)
313
+ else r.choices[0].message.content
314
+ )
315
+ directive = _parse_display_directive(raw)
316
+ reply = _clean_response(raw)
317
+ except Exception as e:
318
+ reply = f"LLM error: {e}. Falling back to keyword matching."
319
+ reply_fb, directive = _keyword_fallback(user_msg, idx, kpis)
320
+ reply += "\n\n" + reply_fb
321
+
322
+ # Resolve artifacts — build interactive Plotly charts when possible
323
+ chart_out = None
324
+ tab_out = None
325
+ show = directive.get("show", "none")
326
+ fname = directive.get("filename", "")
327
+ chart_name = directive.get("chart", "")
328
+
329
+ # Interactive chart builders keyed by name
330
+ chart_builders = {
331
+ "sales": build_sales_chart,
332
+ "sentiment": build_sentiment_chart,
333
+ "top_sellers": build_top_sellers_chart,
334
+ }
335
+
336
+ if chart_name and chart_name in chart_builders:
337
+ chart_out = chart_builders[chart_name]()
338
+ elif show == "figure" and fname:
339
+ # Fallback: try to match filename to a chart builder
340
+ if "sales_trend" in fname:
341
+ chart_out = build_sales_chart()
342
+ elif "sentiment" in fname:
343
+ chart_out = build_sentiment_chart()
344
+ elif "arima" in fname or "forecast" in fname:
345
+ chart_out = build_sales_chart() # closest interactive equivalent
346
+ else:
347
+ chart_out = _empty_chart(f"No interactive chart for {fname}")
348
+
349
+ if show == "table" and fname:
350
+ fp = PY_TAB_DIR / fname
351
+ if fp.exists():
352
+ tab_out = _load_table_safe(fp)
353
+ else:
354
+ reply += f"\n\n*(Could not find table: {fname})*"
355
+
356
+ new_history = (history or []) + [
357
+ {"role": "user", "content": user_msg},
358
+ {"role": "assistant", "content": reply},
359
+ ]
360
+
361
+ return new_history, "", chart_out, tab_out
362
+
363
+
364
+ def _keyword_fallback(msg: str, idx: Dict, kpis: Dict) -> Tuple[str, Dict]:
365
+ """Simple keyword matcher when LLM is unavailable."""
366
+ msg_lower = msg.lower()
367
+
368
+ if not idx["python"]["figures"] and not idx["python"]["tables"]:
369
+ return (
370
+ "No artifacts found yet. Please run the pipeline first (Tab 1), "
371
+ "then come back here to explore the results.",
372
+ {"show": "none"},
373
+ )
374
+
375
+ kpi_text = ""
376
+ if kpis:
377
+ total = kpis.get("total_units_sold", 0)
378
+ kpi_text = (
379
+ f"Quick summary: **{kpis.get('n_titles', '?')}** book titles across "
380
+ f"**{kpis.get('n_months', '?')}** months, with **{total:,.0f}** total units sold."
381
+ )
382
+
383
+ if any(w in msg_lower for w in ["trend", "sales trend", "monthly sale"]):
384
+ return (
385
+ f"Here are the sales trends. {kpi_text}",
386
+ {"show": "figure", "chart": "sales"},
387
+ )
388
+
389
+ if any(w in msg_lower for w in ["sentiment", "review", "positive", "negative"]):
390
+ return (
391
+ f"Here is the sentiment distribution across sampled book titles. {kpi_text}",
392
+ {"show": "figure", "chart": "sentiment"},
393
+ )
394
+
395
+ if any(w in msg_lower for w in ["arima", "forecast", "predict"]):
396
+ return (
397
+ f"Here are the sales trends and forecasts. {kpi_text}",
398
+ {"show": "figure", "chart": "sales"},
399
+ )
400
+
401
+ if any(w in msg_lower for w in ["top", "best sell", "popular", "rank"]):
402
+ return (
403
+ f"Here are the top-selling titles by units sold. {kpi_text}",
404
+ {"show": "table", "scope": "python", "filename": "top_titles_by_units_sold.csv"},
405
+ )
406
+
407
+ if any(w in msg_lower for w in ["price", "pricing", "decision"]):
408
+ return (
409
+ f"Here are the pricing decisions. {kpi_text}",
410
+ {"show": "table", "scope": "python", "filename": "pricing_decisions.csv"},
411
+ )
412
+
413
+ if any(w in msg_lower for w in ["dashboard", "overview", "summary", "kpi"]):
414
+ return (
415
+ f"Dashboard overview: {kpi_text}\n\nAsk me about sales trends, sentiment, forecasts, "
416
+ "pricing, or top sellers to see specific visualizations.",
417
+ {"show": "table", "scope": "python", "filename": "df_dashboard.csv"},
418
+ )
419
+
420
+ # Default
421
+ return (
422
+ f"I can show you various analyses. {kpi_text}\n\n"
423
+ "Try asking about: **sales trends**, **sentiment**, **ARIMA forecasts**, "
424
+ "**pricing decisions**, **top sellers**, or **dashboard overview**.",
425
+ {"show": "none"},
426
+ )
427
+
428
+
429
+ # =========================================================
430
+ # KPI CARDS (BubbleBusters style)
431
+ # =========================================================
432
+
433
+ def render_kpi_cards() -> str:
434
+ kpis = load_kpis()
435
+ if not kpis:
436
+ return (
437
+ '<div style="background:rgba(255,255,255,.65);backdrop-filter:blur(16px);'
438
+ 'border-radius:20px;padding:28px;text-align:center;'
439
+ 'border:1.5px solid rgba(255,255,255,.7);'
440
+ 'box-shadow:0 8px 32px rgba(124,92,191,.08);">'
441
+ '<div style="font-size:36px;margin-bottom:10px;">📊</div>'
442
+ '<div style="color:#a48de8;font-size:14px;'
443
+ 'font-weight:800;margin-bottom:6px;">No data yet</div>'
444
+ '<div style="color:#9d8fc4;font-size:12px;">'
445
+ 'Run the pipeline to populate these cards.</div>'
446
+ '</div>'
447
+ )
448
+
449
+ def card(icon, label, value, colour):
450
+ return f"""
451
+ <div style="background:rgba(255,255,255,.72);backdrop-filter:blur(16px);
452
+ border-radius:20px;padding:18px 14px 16px;text-align:center;
453
+ border:1.5px solid rgba(255,255,255,.8);
454
+ box-shadow:0 4px 16px rgba(124,92,191,.08);
455
+ border-top:3px solid {colour};">
456
+ <div style="font-size:26px;margin-bottom:7px;line-height:1;">{icon}</div>
457
+ <div style="color:#9d8fc4;font-size:9.5px;text-transform:uppercase;
458
+ letter-spacing:1.8px;margin-bottom:7px;font-weight:800;">{label}</div>
459
+ <div style="color:#2d1f4e;font-size:16px;font-weight:800;">{value}</div>
460
+ </div>"""
461
+
462
+ kpi_config = [
463
+ ("n_titles", "📚", "Book Titles", "#a48de8"),
464
+ ("n_months", "📅", "Time Periods", "#7aa6f8"),
465
+ ("total_units_sold", "📦", "Units Sold", "#6ee7c7"),
466
+ ("total_revenue", "💰", "Revenue", "#3dcba8"),
467
+ ]
468
+
469
+ html = (
470
+ '<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));'
471
+ 'gap:12px;margin-bottom:24px;">'
472
+ )
473
+ for key, icon, label, colour in kpi_config:
474
+ val = kpis.get(key)
475
+ if val is None:
476
+ continue
477
+ if isinstance(val, (int, float)) and val > 100:
478
+ val = f"{val:,.0f}"
479
+ html += card(icon, label, str(val), colour)
480
+ # Extra KPIs not in config
481
+ known = {k for k, *_ in kpi_config}
482
+ for key, val in kpis.items():
483
+ if key not in known:
484
+ label = key.replace("_", " ").title()
485
+ if isinstance(val, (int, float)) and val > 100:
486
+ val = f"{val:,.0f}"
487
+ html += card("📈", label, str(val), "#8fa8f8")
488
+ html += "</div>"
489
+ return html
490
+
491
+
492
+ # =========================================================
493
+ # INTERACTIVE PLOTLY CHARTS (BubbleBusters style)
494
+ # =========================================================
495
+
496
+ CHART_PALETTE = ["#7c5cbf", "#2ec4a0", "#e8537a", "#e8a230", "#5e8fef",
497
+ "#c45ea8", "#3dbacc", "#a0522d", "#6aaa3a", "#d46060"]
498
+
499
+ def _styled_layout(**kwargs) -> dict:
500
+ defaults = dict(
501
+ template="plotly_white",
502
+ paper_bgcolor="rgba(255,255,255,0.95)",
503
+ plot_bgcolor="rgba(255,255,255,0.98)",
504
+ font=dict(family="system-ui, sans-serif", color="#2d1f4e", size=12),
505
+ margin=dict(l=60, r=20, t=70, b=70),
506
+ legend=dict(
507
+ orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1,
508
+ bgcolor="rgba(255,255,255,0.92)",
509
+ bordercolor="rgba(124,92,191,0.35)", borderwidth=1,
510
+ ),
511
+ title=dict(font=dict(size=15, color="#4b2d8a")),
512
+ )
513
+ defaults.update(kwargs)
514
+ return defaults
515
+
516
+
517
+ def _empty_chart(title: str) -> go.Figure:
518
+ fig = go.Figure()
519
+ fig.update_layout(
520
+ title=title, height=420, template="plotly_white",
521
+ paper_bgcolor="rgba(255,255,255,0.95)",
522
+ annotations=[dict(text="Run the pipeline to generate data",
523
+ x=0.5, y=0.5, xref="paper", yref="paper", showarrow=False,
524
+ font=dict(size=14, color="rgba(124,92,191,0.5)"))],
525
+ )
526
+ return fig
527
+
528
+
529
+ def build_sales_chart() -> go.Figure:
530
+ path = PY_TAB_DIR / "df_dashboard.csv"
531
+ if not path.exists():
532
+ return _empty_chart("Sales Trends — run the pipeline first")
533
+ df = pd.read_csv(path)
534
+ date_col = next((c for c in df.columns if "month" in c.lower() or "date" in c.lower()), None)
535
+ val_cols = [c for c in df.columns if c != date_col and df[c].dtype in ("float64", "int64")]
536
+ if not date_col or not val_cols:
537
+ return _empty_chart("Could not auto-detect columns in df_dashboard.csv")
538
+ df[date_col] = pd.to_datetime(df[date_col], errors="coerce")
539
+ fig = go.Figure()
540
+ for i, col in enumerate(val_cols):
541
+ fig.add_trace(go.Scatter(
542
+ x=df[date_col], y=df[col], name=col.replace("_", " ").title(),
543
+ mode="lines+markers", line=dict(color=CHART_PALETTE[i % len(CHART_PALETTE)], width=2),
544
+ marker=dict(size=4),
545
+ hovertemplate=f"<b>{col.replace('_',' ').title()}</b><br>%{{x|%b %Y}}: %{{y:,.0f}}<extra></extra>",
546
+ ))
547
+ fig.update_layout(**_styled_layout(height=450, hovermode="x unified",
548
+ title=dict(text="Monthly Overview")))
549
+ fig.update_xaxes(gridcolor="rgba(124,92,191,0.15)", showgrid=True)
550
+ fig.update_yaxes(gridcolor="rgba(124,92,191,0.15)", showgrid=True)
551
+ return fig
552
+
553
+
554
+ def build_sentiment_chart() -> go.Figure:
555
+ path = PY_TAB_DIR / "sentiment_counts_sampled.csv"
556
+ if not path.exists():
557
+ return _empty_chart("Sentiment Distribution — run the pipeline first")
558
+ df = pd.read_csv(path)
559
+ title_col = df.columns[0]
560
+ sent_cols = [c for c in ["negative", "neutral", "positive"] if c in df.columns]
561
+ if not sent_cols:
562
+ return _empty_chart("No sentiment columns found in CSV")
563
+ colors = {"negative": "#e8537a", "neutral": "#5e8fef", "positive": "#2ec4a0"}
564
+ fig = go.Figure()
565
+ for col in sent_cols:
566
+ fig.add_trace(go.Bar(
567
+ name=col.title(), y=df[title_col], x=df[col],
568
+ orientation="h", marker_color=colors.get(col, "#888"),
569
+ hovertemplate=f"<b>{col.title()}</b>: %{{x}}<extra></extra>",
570
+ ))
571
+ fig.update_layout(**_styled_layout(
572
+ height=max(400, len(df) * 28), barmode="stack",
573
+ title=dict(text="Sentiment Distribution by Book"),
574
+ ))
575
+ fig.update_xaxes(title="Number of Reviews")
576
+ fig.update_yaxes(autorange="reversed")
577
+ return fig
578
+
579
+
580
+ def build_top_sellers_chart() -> go.Figure:
581
+ path = PY_TAB_DIR / "top_titles_by_units_sold.csv"
582
+ if not path.exists():
583
+ return _empty_chart("Top Sellers — run the pipeline first")
584
+ df = pd.read_csv(path).head(15)
585
+ title_col = next((c for c in df.columns if "title" in c.lower()), df.columns[0])
586
+ val_col = next((c for c in df.columns if "unit" in c.lower() or "sold" in c.lower()), df.columns[-1])
587
+ fig = go.Figure(go.Bar(
588
+ y=df[title_col], x=df[val_col], orientation="h",
589
+ marker=dict(color=df[val_col], colorscale=[[0, "#c5b4f0"], [1, "#7c5cbf"]]),
590
+ hovertemplate="<b>%{y}</b><br>Units: %{x:,.0f}<extra></extra>",
591
+ ))
592
+ fig.update_layout(**_styled_layout(
593
+ height=max(400, len(df) * 30),
594
+ title=dict(text="Top Selling Titles"), showlegend=False,
595
+ ))
596
+ fig.update_yaxes(autorange="reversed")
597
+ fig.update_xaxes(title="Total Units Sold")
598
+ return fig
599
+
600
+
601
+ def refresh_dashboard():
602
+ return render_kpi_cards(), build_sales_chart(), build_sentiment_chart(), build_top_sellers_chart()
603
+
604
+
605
+ # =========================================================
606
+ # UI
607
+ # =========================================================
608
+
609
+ ensure_dirs()
610
+
611
+ def load_css() -> str:
612
+ css_path = BASE_DIR / "style.css"
613
+ return css_path.read_text(encoding="utf-8") if css_path.exists() else ""
614
+
615
+
616
+ with gr.Blocks(title="AIBDM 2026 Workshop App") as demo:
617
+
618
+ gr.Markdown(
619
+ "# SE21 App Template\n"
620
+ "*This is an app template for SE21 students*",
621
+ elem_id="escp_title",
622
+ )
623
+
624
+ # ===========================================================
625
+ # TAB 1 -- Pipeline Runner
626
+ # ===========================================================
627
+ with gr.Tab("Pipeline Runner"):
628
+ gr.Markdown()
629
+
630
+ with gr.Row():
631
+ with gr.Column(scale=1):
632
+ btn_nb1 = gr.Button("Step 1: Data Creation", variant="secondary")
633
+ with gr.Column(scale=1):
634
+ btn_nb2 = gr.Button("Step 2: Python Analysis", variant="secondary")
635
+
636
+ with gr.Row():
637
+ btn_all = gr.Button("Run Full Pipeline (Both Steps)", variant="primary")
638
+
639
+ run_log = gr.Textbox(
640
+ label="Execution Log",
641
+ lines=18,
642
+ max_lines=30,
643
+ interactive=False,
644
+ )
645
+
646
+ btn_nb1.click(run_datacreation, outputs=[run_log])
647
+ btn_nb2.click(run_pythonanalysis, outputs=[run_log])
648
+ btn_all.click(run_full_pipeline, outputs=[run_log])
649
+
650
+ # ===========================================================
651
+ # TAB 2 -- Dashboard (KPIs + Interactive Charts + Gallery)
652
+ # ===========================================================
653
+ with gr.Tab("Dashboard"):
654
+ kpi_html = gr.HTML(value=render_kpi_cards)
655
+
656
+ refresh_btn = gr.Button("Refresh Dashboard", variant="primary")
657
+
658
+ gr.Markdown("#### Interactive Charts")
659
+ chart_sales = gr.Plot(label="Monthly Overview")
660
+ chart_sentiment = gr.Plot(label="Sentiment Distribution")
661
+ chart_top = gr.Plot(label="Top Sellers")
662
+
663
+ gr.Markdown("#### Static Figures (from notebooks)")
664
+ gallery = gr.Gallery(
665
+ label="Generated Figures",
666
+ columns=2,
667
+ height=480,
668
+ object_fit="contain",
669
+ )
670
+
671
+ gr.Markdown("#### Data Tables")
672
+ table_dropdown = gr.Dropdown(
673
+ label="Select a table to view",
674
+ choices=[],
675
+ interactive=True,
676
+ )
677
+ table_display = gr.Dataframe(
678
+ label="Table Preview",
679
+ interactive=False,
680
+ )
681
+
682
+ def _on_refresh():
683
+ kpi, c1, c2, c3 = refresh_dashboard()
684
+ figs, dd, df = refresh_gallery()
685
+ return kpi, c1, c2, c3, figs, dd, df
686
+
687
+ refresh_btn.click(
688
+ _on_refresh,
689
+ outputs=[kpi_html, chart_sales, chart_sentiment, chart_top,
690
+ gallery, table_dropdown, table_display],
691
+ )
692
+ table_dropdown.change(
693
+ on_table_select,
694
+ inputs=[table_dropdown],
695
+ outputs=[table_display],
696
+ )
697
+
698
+ # ===========================================================
699
+ # TAB 3 -- AI Dashboard
700
+ # ===========================================================
701
+ with gr.Tab('"AI" Dashboard'):
702
+ _ai_status = (
703
+ "Connected to your **n8n workflow**." if N8N_WEBHOOK_URL
704
+ else "**LLM active.**" if LLM_ENABLED
705
+ else "Using **keyword matching**. Upgrade options: "
706
+ "set `N8N_WEBHOOK_URL` to connect your n8n workflow, "
707
+ "or set `HF_API_KEY` for direct LLM access."
708
+ )
709
+ gr.Markdown(
710
+ "### Ask questions, get interactive visualisations\n\n"
711
+ f"Type a question and the system will pick the right interactive chart or table. {_ai_status}"
712
+ )
713
+
714
+ with gr.Row(equal_height=True):
715
+ with gr.Column(scale=1):
716
+ chatbot = gr.Chatbot(
717
+ label="Conversation",
718
+ height=380,
719
+ )
720
+ user_input = gr.Textbox(
721
+ label="Ask about your data",
722
+ placeholder="e.g. Show me sales trends / What are the top sellers? / Sentiment analysis",
723
+ lines=1,
724
+ )
725
+ gr.Examples(
726
+ examples=[
727
+ "Show me the sales trends",
728
+ "What does the sentiment look like?",
729
+ "Which titles sell the most?",
730
+ "Show the ARIMA forecasts",
731
+ "What are the pricing decisions?",
732
+ "Give me a dashboard overview",
733
+ ],
734
+ inputs=user_input,
735
+ )
736
+
737
+ with gr.Column(scale=1):
738
+ ai_figure = gr.Plot(
739
+ label="Interactive Chart",
740
+ )
741
+ ai_table = gr.Dataframe(
742
+ label="Data Table",
743
+ interactive=False,
744
+ )
745
+
746
+ user_input.submit(
747
+ ai_chat,
748
+ inputs=[user_input, chatbot],
749
+ outputs=[chatbot, user_input, ai_figure, ai_table],
750
+ )
751
+
752
+
753
+ demo.launch(css=load_css(), allowed_paths=[str(BASE_DIR)])