interview-coach / agents /__init__.py
ishan-25's picture
Upload folder using huggingface_hub
cf94939 verified
Raw
History Blame Contribute Delete
260 Bytes
# agents/__init__.py
# Exposes all agents for clean imports from engine.py
from .validator import ValidatorAgent
from .question_gen import QuestionGenAgent
from .scorer import ScorerAgent
__all__ = ["ValidatorAgent", "QuestionGenAgent", "ScorerAgent"]