fix: 清理 LLM prompt 中的过时引用(confidence/injuries)

- 全部 agent/match_prediction prompt: deprecated "confidence" → "subjective_confidence"
- aggregator prompt: 移除已删除的 injuries 专家(→standings),修正专家中文名(阵容完整性→联赛排名)

消除预测日志中的 Deprecated field / 未知专家警告。
This commit is contained in:
shangfangjian
2026-09-22 11:05:07 +08:00
parent 197641b9f7
commit 8fef411ced
8 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -8,8 +8,8 @@
你的任务: 综合权衡各报告,输出最终预测。
裁决规则:
- 各报告的 confidence 和 data_sufficiency 是采信依据: no_data/error 状态的报告必须忽略,不得编造
- 5 位专家: 近期状态分析专家 / 攻防数据分析专家 / 主客因素分析专家 / 阵容完整性分析专家 / 历史交锋分析专家
- 各报告的 subjective_confidence 和 data_sufficiency 是采信依据: no_data/error 状态的报告必须忽略,不得编造
- 5 位专家: 近期状态分析专家 / 攻防数据分析专家 / 主客因素分析专家 / 联赛排名分析专家 / 历史交锋分析专家
- 引用专家意见时使用上述全称,不要使用英文代码(form/stats/h2h 等)
- home_edge 是各专家的方向性判断(-1~1),冲突时给出你的权衡理由
- agent_weights 体现你对各报告的采信度(0-1,总和无须为 1)
@@ -23,8 +23,8 @@
"alt_pred_home_goals": <int 0-10, (,)>,
"alt_pred_away_goals": <int 0-10, >,
"1x2": "<'1'|'X'|'2'>",
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"reasoning": "<250 字内推理,引用各报告证据>",
"agent_weights": {"form": <0-1>, "stats": <0-1>, "home_away": <0-1>, "injuries": <0-1>, "h2h": <0-1>}
"agent_weights": {"form": <0-1>, "stats": <0-1>, "home_away": <0-1>, "standings": <0-1>, "h2h": <0-1>}
}
```
+1 -1
View File
@@ -15,7 +15,7 @@
"data_sufficiency": "high|medium|low|none",
"analysis": "<150 字内分析,含关键事件与走势判断>",
"home_edge": <-1.0 1.0, =/>,
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"key_evidence": ["<证据1>", "<证据2>"]
}
```
+1 -1
View File
@@ -16,7 +16,7 @@
"data_sufficiency": "high|medium|low|none",
"analysis": "<150 字内分析,提取交手规律>",
"home_edge": <-1.0 1.0, =>,
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"key_evidence": ["<证据1>", "<证据2>"]
}
```
+1 -1
View File
@@ -15,7 +15,7 @@
"data_sufficiency": "high|medium|low|none",
"analysis": "<150 字内分析,量化主客因素影响>",
"home_edge": <-1.0 1.0, =>,
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"key_evidence": ["<证据1>", "<证据2>"]
}
```
+1 -1
View File
@@ -17,7 +17,7 @@
"data_sufficiency": "high|medium|low|none",
"analysis": "<150 字内分析,量化两队实力差距>",
"home_edge": <-1.0 1.0, =>,
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"key_evidence": ["<证据1>", "<证据2>"]
}
```
+1 -1
View File
@@ -16,7 +16,7 @@
"data_sufficiency": "high|medium|low|none",
"analysis": "<150 字内分析,量化攻防强度>",
"home_edge": <-1.0 1.0, =>,
"confidence": <0.0-1.0>,
"subjective_confidence": <0.0-1.0>,
"key_evidence": ["<证据1>", "<证据2>"]
}
```