mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
- Robust ID extraction in CentralityCalculator, CommunityDetector, and ConnectivityAnalyzer - Support for direct Entity objects and dictionaries as node identifiers - Improved Entity hashability in utils/types.py - Added integration test to verify fix and prevent regression
12 lines
308 B
Python
12 lines
308 B
Python
|
|
import sys
|
|
import os
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
|
|
try:
|
|
from semantica.export.methods import export_yaml
|
|
from semantica.graph_store.graph_store import GraphStore
|
|
print("Imported successfully")
|
|
except Exception as e:
|
|
print(f"Error: {e}")
|