File size: 447 Bytes
b1c84b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
ml/data_sources/__init__.py
Package init for PhilVerify data source adapters.

Exports the abstract base class, normalized sample dataclass,
and shared NLP utility functions used across all source adapters.
"""

from __future__ import annotations

from .base import (
    DataSource,
    NormalizedSample,
    clean_text,
    detect_language,
)

__all__ = [
    "DataSource",
    "NormalizedSample",
    "clean_text",
    "detect_language",
]