15 lines
233 B
Python
Raw Normal View History

2025-12-08 14:58:35 +08:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Prompt 管理模块
提供版本化的 Prompt 注册和渲染功能
"""
from .registry import PromptRegistry, PromptConfig
__all__ = [
'PromptRegistry',
'PromptConfig',
]