| r"""_summary_ | |
| -*- coding: utf-8 -*- | |
| Module : utils.header | |
| File Name : header.py | |
| Description : import some modules from top-level package | |
| Creation Date : 2024-07-16 | |
| Author : Frank Kang(frankkang@zju.edu.cn) | |
| """ | |
| from config.utils import get_dir | |
| from config import ConfigReader | |
| from prompt import Prompt, AssistantCreateQuery, MessageQuery | |
| from prompt.utils import get_prompt | |
| __all__ = [ | |
| "get_dir", | |
| "ConfigReader", | |
| "Prompt", | |
| "AssistantCreateQuery", | |
| "MessageQuery", | |
| "get_prompt" | |
| ] | |