mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-10-14 15:52:49 +08:00
17 lines
362 B
Python
17 lines
362 B
Python
from .chatbot import create_chat_box
|
|
from .eval import create_eval_tab
|
|
from .export import create_export_tab
|
|
from .infer import create_infer_tab
|
|
from .top import create_top
|
|
from .train import create_train_tab
|
|
|
|
|
|
__all__ = [
|
|
"create_chat_box",
|
|
"create_eval_tab",
|
|
"create_export_tab",
|
|
"create_infer_tab",
|
|
"create_top",
|
|
"create_train_tab",
|
|
]
|