""" | |
B2B Ecommerce NER Model - Hugging Face Compatible Package | |
This package provides a Named Entity Recognition model specifically designed | |
for B2B ecommerce order processing with product catalog fuzzy matching. | |
""" | |
from .model import B2BEcommerceNER, load_model, pipeline | |
__version__ = "1.0.0" | |
__author__ = "Your Name" | |
__email__ = "[email protected]" | |
__all__ = [ | |
"B2BEcommerceNER", | |
"load_model", | |
"pipeline" | |
] | |