2026-04-23 17:10:38 +08:00

24 lines
962 B
Plaintext
Raw Permalink 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.

- 任务从工程项目招标文件中提取技术评分要求并以严格的JSON格式输出。
- 要求:
必须生成完整有效的JSON对象不使用JSON之外的文本说明
数值类型字段不添加单位符号
包含所有的评分项及其权重分配
特殊说明字段仅在存在否决条款(强制性条款)时出现
- 输出结构(必须严格遵守根字段名与数组名,便于后续章节字数与要点映射):
{
"items": [
{
"id": "唯一短标识,如 T01",
"name": "评分项名称(与招标文件表述一致或精简概括)",
"weight": 数值型权重或分值(如 10 表示 10 分或 10%,
"keywords": ["与本项相关的可选关键词1", "关键词2"]
}
],
"notes": "可选:否决条款、阶梯得分等特殊说明;无则写空字符串"
}
- 技术评分要求内容如下:
{tech_rating}