mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-16 08:16:06 +08:00
14 lines
300 B
Python
14 lines
300 B
Python
"""
|
|
Agent Prompt Module - 系统提示词构建模块
|
|
"""
|
|
|
|
from .builder import PromptBuilder, build_agent_system_prompt
|
|
from .workspace import ensure_workspace, load_context_files
|
|
|
|
__all__ = [
|
|
'PromptBuilder',
|
|
'build_agent_system_prompt',
|
|
'ensure_workspace',
|
|
'load_context_files',
|
|
]
|