Skip to content

Commit 35b201b

Browse files
authored
git commit -m "Add public API exports to link_predictor module - Export LinkPredictor, LinkPredictionSaver, and NoLinksFoundError from predictor - Export PredictedLink and LinkPredictionResult from models - Add module docstring - Define __all__ for explicit public API Fixes Intugle#8"
This module provides functionality for predicting relationships between datasets based on column profiling, data type analysis, and LLM-based inference.
1 parent 615f6b7 commit 35b201b

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

tests/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""
2+
Link Predictor Module
3+
4+
This module provides functionality for predicting relationships between datasets
5+
based on column profiling, data type analysis, and LLM-based inference.
6+
"""
7+
8+
from intugle.link_predictor.models import (
9+
LinkPredictionResult,
10+
PredictedLink,
11+
)
12+
from intugle.link_predictor.predictor import (
13+
LinkPredictor,
14+
LinkPredictionSaver,
15+
NoLinksFoundError,
16+
)
17+
18+
__all__ = [
19+
"LinkPredictor",
20+
"LinkPredictionSaver",
21+
"PredictedLink",
22+
"LinkPredictionResult",
23+
"NoLinksFoundError",
24+
]

0 commit comments

Comments
 (0)