cortexa-ai / mcq /__init__.py
Jay-10020's picture
docker implementation with hugging face
2b523d0
raw
history blame contribute delete
186 Bytes
"""
MCQ Generation Module
"""
from .generator import MCQGenerator, get_mcq_generator
from .validator import MCQValidator
__all__ = ['MCQGenerator', 'get_mcq_generator', 'MCQValidator']