15 lines
233 B
Python
15 lines
233 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
"""
|
||
|
|
Prompt 管理模块
|
||
|
|
提供版本化的 Prompt 注册和渲染功能
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .registry import PromptRegistry, PromptConfig
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'PromptRegistry',
|
||
|
|
'PromptConfig',
|
||
|
|
]
|