Change entity type formatting from title case to lowercase without spaces

This commit is contained in:
yangdx 2025-09-21 00:56:56 +08:00
parent c2985429ba
commit 7c463f0fb5

View file

@ -354,8 +354,8 @@ async def _handle_single_entity_extraction(
) )
return None return None
# Captitalize first letter of entity_type # Remove spaces and convert to lowercase
entity_type = entity_type.title() entity_type = entity_type.replace(" ", "").lower()
# Process entity description with same cleaning pipeline # Process entity description with same cleaning pipeline
entity_description = sanitize_and_normalize_extracted_text(record_attributes[3]) entity_description = sanitize_and_normalize_extracted_text(record_attributes[3])