|
1
|
""" |
|
2
|
Intelligence layer — semantic search, community detection, NLP queries, and doc generation. |
|
3
|
|
|
4
|
SemanticSearch — embedding-based similarity search over graph nodes |
|
5
|
CommunityDetector — label-propagation community detection over the graph |
|
6
|
NLPEngine — natural language queries, community naming, doc generation |
|
7
|
DocGenerator — markdown documentation from graph context |
|
8
|
""" |
|
9
|
|
|
10
|
from navegador.intelligence.community import Community, CommunityDetector |
|
11
|
from navegador.intelligence.docgen import DocGenerator |
|
12
|
from navegador.intelligence.nlp import NLPEngine |
|
13
|
from navegador.intelligence.search import SemanticSearch |
|
14
|
|
|
15
|
__all__ = [ |
|
16
|
"SemanticSearch", |
|
17
|
"CommunityDetector", |
|
18
|
"Community", |
|
19
|
"NLPEngine", |
|
20
|
"DocGenerator", |
|
21
|
] |
|
22
|
|