rename package

This commit is contained in:
hiyouga
2024-05-16 18:39:08 +08:00
parent b2fc7aeb03
commit 308edbc426
109 changed files with 31 additions and 31 deletions

View File

@@ -0,0 +1,16 @@
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",
]