包含七步编排入口、结构化/向量化/聚类/词频/报告模块与 prompts 配置;忽略原始 CSV 与本地密钥。 Co-authored-by: Cursor <cursoragent@cursor.com>
45 lines
1.2 KiB
Python
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",
|
|
]
|