diff --git a/docs/examples/entity_resolution.md b/docs/examples/entity_resolution.md index 360d1a7..c1543a1 100644 --- a/docs/examples/entity_resolution.md +++ b/docs/examples/entity_resolution.md @@ -85,7 +85,7 @@ from graphviz import Digraph def generate_html_label(entity: Entity) -> str: rows = [f"{prop.key}{prop.resolved_absolute_value}" for prop in entity.properties] table_rows = "".join(rows) - return f"{table_rows}
{entity.entity_title}
>" + return f"<{table_rows}
{entity.entity_title}
>" def generate_graph(data: DocumentExtraction): dot = Digraph(comment="Entity Graph", node_attr={"shape": "plaintext"})