Files
smart-project-pricing/后端服务/prompts/__init__.py
2026-01-31 21:33:06 +08:00

30 lines
857 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""AI 提示词模块
遵循瑞小美 AI 接入规范:
- 文件位置:{模块}/后端服务/prompts/{功能名}_prompts.py
- 每个文件必须包含PROMPT_META, SYSTEM_PROMPT, USER_PROMPT
"""
from prompts.pricing_advice_prompts import (
PROMPT_META as PRICING_ADVICE_META,
SYSTEM_PROMPT as PRICING_ADVICE_SYSTEM,
USER_PROMPT as PRICING_ADVICE_USER,
)
from prompts.market_analysis_prompts import (
PROMPT_META as MARKET_ANALYSIS_META,
SYSTEM_PROMPT as MARKET_ANALYSIS_SYSTEM,
USER_PROMPT as MARKET_ANALYSIS_USER,
)
from prompts.profit_forecast_prompts import (
PROMPT_META as PROFIT_FORECAST_META,
SYSTEM_PROMPT as PROFIT_FORECAST_SYSTEM,
USER_PROMPT as PROFIT_FORECAST_USER,
)
# 导出所有提示词元数据
ALL_PROMPT_METAS = [
PRICING_ADVICE_META,
MARKET_ANALYSIS_META,
PROFIT_FORECAST_META,
]