Spaces:
Running
Running
Update ui/__init__.py
Browse files- ui/__init__.py +23 -3
ui/__init__.py
CHANGED
@@ -19,8 +19,8 @@ from .insights_ui_generator import (
|
|
19 |
format_single_okr_for_display,
|
20 |
)
|
21 |
|
22 |
-
# Imports from
|
23 |
-
# Assuming the third file containing plot generation functions is named
|
24 |
from .analytics_plot_generator import (
|
25 |
create_placeholder_plot,
|
26 |
generate_posts_activity_plot,
|
@@ -43,6 +43,18 @@ from .analytics_plot_generator import (
|
|
43 |
update_analytics_plots_figures,
|
44 |
)
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
# Define __all__ for explicit export control (what `from package import *` imports)
|
47 |
__all__ = [
|
48 |
# From ui_generators
|
@@ -57,7 +69,7 @@ __all__ = [
|
|
57 |
"extract_key_results_for_selection",
|
58 |
"format_single_okr_for_display",
|
59 |
|
60 |
-
# From
|
61 |
"create_placeholder_plot",
|
62 |
"generate_posts_activity_plot",
|
63 |
"generate_mentions_activity_plot",
|
@@ -77,4 +89,12 @@ __all__ = [
|
|
77 |
"generate_content_format_breakdown_plot",
|
78 |
"generate_content_topic_breakdown_plot",
|
79 |
"update_analytics_plots_figures",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
]
|
|
|
19 |
format_single_okr_for_display,
|
20 |
)
|
21 |
|
22 |
+
# Imports from analytics_plot_generator.py
|
23 |
+
# Assuming the third file containing plot generation functions is named analytics_plot_generator.py
|
24 |
from .analytics_plot_generator import (
|
25 |
create_placeholder_plot,
|
26 |
generate_posts_activity_plot,
|
|
|
43 |
update_analytics_plots_figures,
|
44 |
)
|
45 |
|
46 |
+
# Imports from analytics_tab.py
|
47 |
+
from .analytics_tab import (
|
48 |
+
build_and_wire_tab,
|
49 |
+
handle_refresh_analytics_graphs,
|
50 |
+
)
|
51 |
+
|
52 |
+
# Imports from agentic_module.py
|
53 |
+
from .agentic_module import (
|
54 |
+
build_and_wire_tabs,
|
55 |
+
handle_run_agentic_pipeline,
|
56 |
+
)
|
57 |
+
|
58 |
# Define __all__ for explicit export control (what `from package import *` imports)
|
59 |
__all__ = [
|
60 |
# From ui_generators
|
|
|
69 |
"extract_key_results_for_selection",
|
70 |
"format_single_okr_for_display",
|
71 |
|
72 |
+
# From analytics_plot_generator
|
73 |
"create_placeholder_plot",
|
74 |
"generate_posts_activity_plot",
|
75 |
"generate_mentions_activity_plot",
|
|
|
89 |
"generate_content_format_breakdown_plot",
|
90 |
"generate_content_topic_breakdown_plot",
|
91 |
"update_analytics_plots_figures",
|
92 |
+
|
93 |
+
# From analytics_tab
|
94 |
+
"build_and_wire_tab",
|
95 |
+
"handle_refresh_analytics_graphs",
|
96 |
+
|
97 |
+
# From agentic_module
|
98 |
+
"build_and_wire_tabs",
|
99 |
+
"handle_run_agentic_pipeline",
|
100 |
]
|