You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/extraction_pipelines/ep_file_annotation.config.yaml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,8 @@ config:
149
149
operator: In
150
150
targetProperty: tags
151
151
limit: 500# Number of edges to process per batch
152
+
promoteFileEntities: True # Controls if promote is run on file entities
153
+
promoteTargetEntities: True # Controls if promote is run on target entities
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/functions/fn_file_annotation_finalize/services/ConfigService.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -265,6 +265,8 @@ class PromoteFunctionConfig(BaseModel, alias_generator=to_camel):
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/functions/fn_file_annotation_launch/services/ConfigService.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -265,6 +265,8 @@ class PromoteFunctionConfig(BaseModel, alias_generator=to_camel):
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/functions/fn_file_annotation_prepare/services/ConfigService.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -265,6 +265,8 @@ class PromoteFunctionConfig(BaseModel, alias_generator=to_camel):
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/functions/fn_file_annotation_promote/services/ConfigService.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -266,6 +266,8 @@ class PromoteFunctionConfig(BaseModel, alias_generator=to_camel):
Copy file name to clipboardExpand all lines: modules/accelerators/contextualization/cdf_file_annotation/functions/fn_file_annotation_promote/services/PromoteService.py
# NOTE: This occurs when no instance space is set in the data model views section extraction pipelines config file
181
192
ifnotentity_space:
182
-
self.logger.warning(
183
-
f"Could not determine entity space for type '{annotation_type}'.\nPlease ensure an instance space is set in the Files and Target Entities data model views section of the extraction pipeline configuration.\nSkipping."
184
-
)
193
+
self.logger.warning(f"Could not determine entity space for type '{annotation_type}'. Skipping all texts for this type.")
185
194
continue
186
195
187
-
# Strategy: Check cache → query edges → fallback to global search
self.logger.info(f"Search disabled for annotation type '{annotation_type}'. It will reject those edges without searching ({len(texts_map)} nodes).", section="START")
0 commit comments