Skip to content

Commit 5ec3a57

Browse files
authored
Merge pull request #50 from TogetherCrew/feat/rename-ingestion-workflow
feat: rename ingestion workflow!
2 parents d5f09b1 + aa856f1 commit 5ec3a57

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

hivemind_etl/simple_ingestion/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
@workflow.defn
14-
class IngestionWorkflow:
14+
class VectorIngestionWorkflow:
1515
"""A Temporal workflow for processing document ingestion requests.
1616
1717
This workflow handles the orchestration of document processing activities,

registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
WebsiteIngestionSchedulerWorkflow,
2121
MediaWikiETLWorkflow,
2222
PlatformSummariesWorkflow,
23-
IngestionWorkflow,
23+
VectorIngestionWorkflow,
2424
RealTimeSummaryWorkflow,
2525
)
2626

@@ -29,7 +29,7 @@
2929
WebsiteIngestionSchedulerWorkflow,
3030
MediaWikiETLWorkflow,
3131
PlatformSummariesWorkflow,
32-
IngestionWorkflow,
32+
VectorIngestionWorkflow,
3333
RealTimeSummaryWorkflow,
3434
]
3535

workflows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MediaWikiETLWorkflow,
1212
)
1313
from hivemind_etl.simple_ingestion.pipeline import (
14-
IngestionWorkflow,
14+
VectorIngestionWorkflow,
1515
)
1616
from hivemind_summarizer.summarizer_workflow import PlatformSummariesWorkflow
1717
from hivemind_summarizer.real_time_summary_workflow import RealTimeSummaryWorkflow

0 commit comments

Comments
 (0)