amz_review_analyse/prompts/__init__.py
OnesvmWhoops 2441c9119c Initial commit: VOC LLM 结构化分析流水线
包含七步编排入口、结构化/向量化/聚类/词频/报告模块与 prompts 配置;忽略原始 CSV 与本地密钥。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-03 15:40:13 +08:00

45 lines
1.2 KiB
Python

"""Prompt 包:外置 .md / .yaml 加载与组装。"""
from prompts.loader import (
build_batch_extraction_system,
build_batch_extraction_user,
build_category_analysis_prompts,
build_report_analysis_requirements,
build_report_correction_message,
build_report_json_markers,
build_report_output_format,
build_report_system,
build_single_extraction_template,
build_word_assign_prompts,
format_examples,
get_config,
get_schema,
load_extraction_examples,
product_feedback_categories,
report_markers,
sync_voc_report_constants,
validate_prompt_files,
word_categories,
)
__all__ = [
"build_batch_extraction_system",
"build_batch_extraction_user",
"build_category_analysis_prompts",
"build_report_analysis_requirements",
"build_report_correction_message",
"build_report_json_markers",
"build_report_output_format",
"build_report_system",
"build_single_extraction_template",
"build_word_assign_prompts",
"format_examples",
"get_config",
"get_schema",
"load_extraction_examples",
"product_feedback_categories",
"report_markers",
"sync_voc_report_constants",
"validate_prompt_files",
"word_categories",
]