10 lines
201 B
Python
10 lines
201 B
Python
from .kb import TrainingContentKnowledgeBase
|
|
from .service import TrainingContentService
|
|
from .gpt import GPT
|
|
|
|
__all__ = [
|
|
"TrainingContentService",
|
|
"TrainingContentKnowledgeBase",
|
|
"GPT"
|
|
]
|