11 lines
312 B
Python
11 lines
312 B
Python
"""
|
|
AI Lab commands
|
|
"""
|
|
from .sentiment import SentimentCommand
|
|
from .fillmask import FillMaskCommand
|
|
from .textgen import TextGenCommand
|
|
from .moderation import ModerationCommand
|
|
from .ner import NERCommand
|
|
|
|
__all__ = ['SentimentCommand', 'FillMaskCommand', 'TextGenCommand', 'ModerationCommand', 'NERCommand']
|