Skip to content

Commit f16ead3

Browse files
authored
Merge pull request #1 from samvk12/fix/issue-8-link-predictor-init-1
Add Link Predictor module with initial implementation
2 parents f2a623e + a3ca6c7 commit f16ead3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

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)