yeonjae-universal-schedule-manager 1.0.2__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- universal_schedule_manager/tasks.py +4 -4
- {yeonjae_universal_schedule_manager-1.0.2.dist-info → yeonjae_universal_schedule_manager-1.0.3.dist-info}/METADATA +2 -2
- {yeonjae_universal_schedule_manager-1.0.2.dist-info → yeonjae_universal_schedule_manager-1.0.3.dist-info}/RECORD +5 -5
- {yeonjae_universal_schedule_manager-1.0.2.dist-info → yeonjae_universal_schedule_manager-1.0.3.dist-info}/WHEEL +0 -0
- {yeonjae_universal_schedule_manager-1.0.2.dist-info → yeonjae_universal_schedule_manager-1.0.3.dist-info}/top_level.txt +0 -0
@@ -8,10 +8,10 @@ from typing import Dict, Any
|
|
8
8
|
|
9
9
|
from celery import shared_task
|
10
10
|
|
11
|
-
from
|
11
|
+
from universal_data_retriever.service import DataRetrieverService
|
12
12
|
from universal_llm_service import LLMService, LLMInput, LLMProvider, ModelConfig
|
13
|
-
from
|
14
|
-
from
|
13
|
+
from universal_data_aggregator.service import DataAggregatorService
|
14
|
+
from universal_prompt_builder.service import PromptBuilderService
|
15
15
|
from universal_notification_service import NotificationService
|
16
16
|
# Simplified logging for standalone operation
|
17
17
|
def log_module_io(module_name: str, operation: str, data: dict):
|
@@ -81,7 +81,7 @@ def daily_summary_task() -> Dict[str, Any]:
|
|
81
81
|
logger.info("🔢 DataAggregator: Starting data aggregation")
|
82
82
|
|
83
83
|
# 데이터를 AggregationInput 형태로 변환
|
84
|
-
from
|
84
|
+
from universal_data_aggregator.models import AggregationInput, CommitData, DiffInfo, DateRange
|
85
85
|
|
86
86
|
commits = []
|
87
87
|
for commit_info in retrieved_data.commits:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: yeonjae-universal-schedule-manager
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
4
4
|
Summary: Universal schedule manager module for job scheduling and execution
|
5
5
|
Author-email: Yeonjae <dev@example.com>
|
6
6
|
License: MIT
|
@@ -35,5 +35,5 @@ Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
35
35
|
## 설치
|
36
36
|
|
37
37
|
```bash
|
38
|
-
pip install git+https://github.com/yeonjae-work/universal-modules.git#subdirectory=packages/universal-schedule-manager
|
38
|
+
pip install git+https://github.com/yeonjae-work/universal-modules.git#subdirectory=packages/yeonjae-universal-schedule-manager
|
39
39
|
```
|
@@ -2,8 +2,8 @@ universal_schedule_manager/__init__.py,sha256=d1asEdvyEKLqcPgRKWG602TWPjGjZK8_UO
|
|
2
2
|
universal_schedule_manager/exceptions.py,sha256=ZIUxSMdHeSt0QI5UCzpYESnffgLHulPvAacKOtyY8oQ,2356
|
3
3
|
universal_schedule_manager/models.py,sha256=nvxvh05gRPCzYrNu6mTe0hSPK4WJp1nQwkGAU55jP2U,6464
|
4
4
|
universal_schedule_manager/service.py,sha256=egt94nxGvTyDNuqcNxnu3bDWye7SDXohdaiKzdw28ZA,12571
|
5
|
-
universal_schedule_manager/tasks.py,sha256=
|
6
|
-
yeonjae_universal_schedule_manager-1.0.
|
7
|
-
yeonjae_universal_schedule_manager-1.0.
|
8
|
-
yeonjae_universal_schedule_manager-1.0.
|
9
|
-
yeonjae_universal_schedule_manager-1.0.
|
5
|
+
universal_schedule_manager/tasks.py,sha256=0vOCPEHAUWloc0DS662p2Bn3gniiD29xNPFxjAYSapc,13814
|
6
|
+
yeonjae_universal_schedule_manager-1.0.3.dist-info/METADATA,sha256=JIdqzBA57ciOaGK8t4Ug8Uq_hoiftaI1PjAo0EmCesM,1491
|
7
|
+
yeonjae_universal_schedule_manager-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
+
yeonjae_universal_schedule_manager-1.0.3.dist-info/top_level.txt,sha256=IvPXSrhGzvT4LCf911hF8U9bUTkrR__hgi45sLP5vvA,27
|
9
|
+
yeonjae_universal_schedule_manager-1.0.3.dist-info/RECORD,,
|
File without changes
|