GuglielmoTor commited on
Commit
12d4dd6
·
verified ·
1 Parent(s): 5a8cab1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -21,14 +21,12 @@ from config import (
21
  PLOT_ID_TO_FORMULA_KEY_MAP)
22
  from state_manager import process_and_store_bubble_token
23
  from sync_logic import sync_all_linkedin_data_orchestrator
24
- from ui_generators import (
25
  display_main_dashboard,
26
- # run_mentions_tab_display, # Removed
27
- # run_follower_stats_tab_display, # Removed
28
  build_analytics_tab_plot_area, # EXPECTED TO RETURN: plot_ui_objects, section_titles_map
29
  BOMB_ICON, EXPLORE_ICON, FORMULA_ICON, ACTIVE_ICON
30
  )
31
- from analytics_plot_generator import update_analytics_plots_figures, create_placeholder_plot
32
  from formulas import PLOT_FORMULAS
33
 
34
  # --- EXISTING CHATBOT MODULE IMPORTS ---
@@ -39,7 +37,7 @@ from chatbot_handler import generate_llm_response
39
  # --- NEW AGENTIC PIPELINE IMPORTS ---
40
  try:
41
  from run_agentic_pipeline import run_full_analytics_orchestration
42
- from insights_ui_generator import (
43
  format_report_to_markdown,
44
  extract_key_results_for_selection,
45
  format_single_okr_for_display
 
21
  PLOT_ID_TO_FORMULA_KEY_MAP)
22
  from state_manager import process_and_store_bubble_token
23
  from sync_logic import sync_all_linkedin_data_orchestrator
24
+ from ui.ui_generators import (
25
  display_main_dashboard,
 
 
26
  build_analytics_tab_plot_area, # EXPECTED TO RETURN: plot_ui_objects, section_titles_map
27
  BOMB_ICON, EXPLORE_ICON, FORMULA_ICON, ACTIVE_ICON
28
  )
29
+ from ui.analytics_plot_generator import update_analytics_plots_figures, create_placeholder_plot
30
  from formulas import PLOT_FORMULAS
31
 
32
  # --- EXISTING CHATBOT MODULE IMPORTS ---
 
37
  # --- NEW AGENTIC PIPELINE IMPORTS ---
38
  try:
39
  from run_agentic_pipeline import run_full_analytics_orchestration
40
+ from ui.insights_ui_generator import (
41
  format_report_to_markdown,
42
  extract_key_results_for_selection,
43
  format_single_okr_for_display