We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2a623e + a3ca6c7 commit f16ead3Copy full SHA for f16ead3
1 file changed
tests/__init__.py
@@ -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