30 lines
857 B
Python
30 lines
857 B
Python
"""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,
|
||
]
|