Refactor imports to use submodule-specific paths and remove generic exports

This commit is contained in:
KaifAhmad1
2025-12-16 17:49:41 +05:30
parent 96702923de
commit adabdd283f
14 changed files with 66 additions and 93 deletions
+2 -2
View File
@@ -1007,7 +1007,7 @@ result = pipeline.execute(sources=["data/"], parallel=True)
### Pattern 1: Complete Knowledge Graph Pipeline
```python
from semantica import Semantica
from semantica.core import Semantica
semantica = Semantica()
result = semantica.build_knowledge_base(
@@ -1053,7 +1053,7 @@ deduplicated = [op.merged_entity for op in merge_operations]
### Pattern 3: GraphRAG with Hybrid Search
```python
from semantica import Semantica
from semantica.core import Semantica
from semantica.vector_store import VectorStore, HybridSearch
from semantica.context import AgentMemory