add prompt
parent
0226fe99a5
commit
b00afefa29
|
|
@ -0,0 +1,42 @@
|
||||||
|
你是一个专业的法律案件信息提取助手。请对每个案件内容中提取关键信息,并在每个案件所在目录输出结果文件:summary_llm.yml。
|
||||||
|
因为内容非常之多,你的上下文可能不够,所以每个案件需要对应的单独的Agent去处理,所以你需要开多个子Agent。
|
||||||
|
# 提取要求:
|
||||||
|
1. 原告(plaintiff):列出所有原告姓名
|
||||||
|
2. 被告(defendant):列出所有被告姓名
|
||||||
|
3. 事由(case_reason):简要描述案件原因
|
||||||
|
4. 判决总结(judgment_summary):不超过300字
|
||||||
|
5. 案件地点(case_location):审理地点
|
||||||
|
6. 判决结果(judgment_result):包含控诉内容和是否成立
|
||||||
|
|
||||||
|
# 案件内容:请读取每个 case.json 中的 content
|
||||||
|
|
||||||
|
# 输出格式:
|
||||||
|
按原文内容和语种,严格按照以下YAML格式输出: summary_llm.yml
|
||||||
|
|
||||||
|
<summary_llm_sample>
|
||||||
|
plaintiff: #原告
|
||||||
|
- HO Oi-hing
|
||||||
|
- HO Oi-ying
|
||||||
|
defendant: #被告
|
||||||
|
- Kuoni Travel
|
||||||
|
- Paradise Travel
|
||||||
|
case_reason: > #事由
|
||||||
|
Coroner's inquiry into deaths from a hot air balloon accident in Egypt
|
||||||
|
judgment_summary: > #判决总结,不超过300个字
|
||||||
|
Nine Hong Kong tourists died in a hot air balloon accident in Luxor, Egypt on February 26, 2013. The accident was caused by a hose fuel leak at the upper portion of the forward right hose connected to burner number 193, which caught fire during the landing procedure. All deceased died of multiple injuries and burns. The coroner concluded these were accidental deaths and made several recommendations to travel companies and the Travel Industry Council regarding risk assessment and provision of information about activities involving risk.
|
||||||
|
jurisdiction_code: > #司法区域代码
|
||||||
|
xxx
|
||||||
|
jurisdiction_name: > #司法区域名称
|
||||||
|
xxx
|
||||||
|
case_location: #案件审理地点
|
||||||
|
- Luxor City, Egypt
|
||||||
|
- Hong Kong
|
||||||
|
case_object: #物件
|
||||||
|
- Hot air balloon
|
||||||
|
judgment_result: #判决结果
|
||||||
|
- allegation_content: Deaths were caused by accident #控诉内容
|
||||||
|
established: Y #是否成立Y/N
|
||||||
|
involved_entities: # 涉及到的实体
|
||||||
|
- name: entityName #实体名称
|
||||||
|
state_reasons: xxx #它在这个案件出现的原因
|
||||||
|
</summary_llm_sample>
|
||||||
Loading…
Reference in New Issue