rework entity_sync

This commit is contained in:
phernandez
2025-01-13 20:15:06 -06:00
parent f464c894f1
commit aa8c0a7a36
7 changed files with 76 additions and 40 deletions
+1 -1
View File
@@ -187,7 +187,7 @@ async def validate_knowledge_files(
for file_path in [*changes.new, *changes.modified]:
try:
await sync_service.knowledge_parser.parse_file(directory / file_path)
await sync_service.entity_parser.parse_file(directory / file_path)
except ParseError as e:
issues.append(ValidationIssue(file_path=file_path, error=str(e)))