Spaces:
Running
Running
Create __init__.py
Browse files
insight_and_tasks/data_models/__init__.py
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# data_models/__init__.py
|
2 |
+
|
3 |
+
# This file makes the 'data_models' directory a Python package.
|
4 |
+
|
5 |
+
# Expose key models at the package level for easier importing.
|
6 |
+
from .metrics import TimeSeriesMetric, AgentMetrics, MetricType, TimeGranularity
|
7 |
+
from .tasks import (
|
8 |
+
EffortLevel,
|
9 |
+
TaskType,
|
10 |
+
DataSubject,
|
11 |
+
TimelineCategory,
|
12 |
+
PriorityLevel,
|
13 |
+
Task,
|
14 |
+
KeyResult,
|
15 |
+
OKR,
|
16 |
+
TaskExtractionOutput
|
17 |
+
)
|
18 |
+
|
19 |
+
__all__ = [
|
20 |
+
# From metrics.py
|
21 |
+
"TimeSeriesMetric",
|
22 |
+
"AgentMetrics",
|
23 |
+
"MetricType",
|
24 |
+
"TimeGranularity",
|
25 |
+
# From tasks.py
|
26 |
+
"EffortLevel",
|
27 |
+
"TaskType",
|
28 |
+
"DataSubject",
|
29 |
+
"TimelineCategory",
|
30 |
+
"PriorityLevel",
|
31 |
+
"Task",
|
32 |
+
"KeyResult",
|
33 |
+
"OKR",
|
34 |
+
"TaskExtractionOutput"
|
35 |
+
]
|