diff --git a/examples/knowledge_graph.py b/examples/knowledge_graph.py index 8db1a4b..171830c 100644 --- a/examples/knowledge_graph.py +++ b/examples/knowledge_graph.py @@ -31,8 +31,5 @@ print(f" {edge}") print("\n--- Summarize ---") -try: - summary = kg.summarize() - print(f"Summary: {summary}") -except Exception as e: - print(f"Summarize not supported on this server version: {e}") +summary = kg.summarize() +print(f"Summary: {summary}")