Files
life-echo/api/agents/prompts/__init__.py
2026-01-07 11:56:53 +08:00

19 lines
604 B
Python

"""
提示词模块
"""
from .conversation_prompts import ConversationStage, get_system_prompt as get_conversation_prompt, get_questions_for_stage, INTERVIEW_QUESTIONS
from .memory_prompts import get_system_prompt as get_memory_prompt, get_chapter_classification_prompt, get_text_rewrite_prompt, CHAPTER_CATEGORIES, CHAPTER_ORDER
__all__ = [
"ConversationStage",
"get_conversation_prompt",
"get_questions_for_stage",
"INTERVIEW_QUESTIONS",
"get_memory_prompt",
"get_chapter_classification_prompt",
"get_text_rewrite_prompt",
"CHAPTER_CATEGORIES",
"CHAPTER_ORDER",
]