Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hivemind_etl/simple_ingestion/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@workflow.defn
class IngestionWorkflow:
class VectorIngestionWorkflow:
"""A Temporal workflow for processing document ingestion requests.

This workflow handles the orchestration of document processing activities,
Expand Down
4 changes: 2 additions & 2 deletions registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
WebsiteIngestionSchedulerWorkflow,
MediaWikiETLWorkflow,
PlatformSummariesWorkflow,
IngestionWorkflow,
VectorIngestionWorkflow,
RealTimeSummaryWorkflow,
)

Expand All @@ -29,7 +29,7 @@
WebsiteIngestionSchedulerWorkflow,
MediaWikiETLWorkflow,
PlatformSummariesWorkflow,
IngestionWorkflow,
VectorIngestionWorkflow,
RealTimeSummaryWorkflow,
]

Expand Down
2 changes: 1 addition & 1 deletion workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
MediaWikiETLWorkflow,
)
from hivemind_etl.simple_ingestion.pipeline import (
IngestionWorkflow,
VectorIngestionWorkflow,
)
from hivemind_summarizer.summarizer_workflow import PlatformSummariesWorkflow
from hivemind_summarizer.real_time_summary_workflow import RealTimeSummaryWorkflow
Expand Down