research(jev-intent): 修复轮重造语料并全量对照
Independent Staging Quality Gate / publish (push) Canceled after 0s
Independent Staging Quality Gate / validate (push) Canceled after 1m37s

来源 C 改为 DeepSeek Flash 生成+独立复核,撤回模板拼接结论。来源 B 157 条人工标注后跑 Jev x2 与 Flash 全量对照,结论为缺数据。
This commit is contained in:
jesse-ux
2026-09-19 11:30:31 +08:00
parent 69a44fe78d
commit c2ecbc74cd
12 changed files with 95414 additions and 82588 deletions
File diff suppressed because it is too large Load Diff
+123 -32
View File
@@ -8,6 +8,7 @@ Source B rows are aggregated and never written as raw text.
from __future__ import annotations
import argparse
import hashlib
import json
import os
import sys
@@ -320,6 +321,12 @@ def error_portrait(rows: Sequence[Mapping[str, Any]], *, limit: int = 3) -> dict
return buckets
def cache_key(run_id: str, sample: Mapping[str, Any]) -> str:
message = str(sample.get("user_message") or "")
digest = hashlib.sha256(message.encode("utf-8")).hexdigest()[:16]
return f"{run_id}:{sample['id']}:{digest}"
def run_batch(
samples: Sequence[Mapping[str, Any]],
*,
@@ -331,7 +338,7 @@ def run_batch(
caller = call_fn or call_jev_retry
pending = []
for sample in samples:
key = f"{run_id}:{sample['id']}"
key = cache_key(run_id, sample)
if key in cache:
sample[run_id] = cache[key]
else:
@@ -346,14 +353,14 @@ def run_batch(
sample = futures[future]
result = future.result()
sample[run_id] = result
cache[f"{run_id}:{sample['id']}"] = result
cache[cache_key(run_id, sample)] = result
done += 1
if done % 50 == 0 or done == len(pending):
print(f" {run_id} {done}/{len(pending)}", flush=True)
def load_cache() -> dict[str, Any]:
path = CACHE_DIR / "jev_runs.json"
path = CACHE_DIR / "jev_runs_v2.json"
if not path.is_file():
return {}
try:
@@ -364,7 +371,7 @@ def load_cache() -> dict[str, Any]:
def save_cache(cache: dict[str, Any]) -> None:
CACHE_DIR.mkdir(parents=True, exist_ok=True)
path = CACHE_DIR / "jev_runs.json"
path = CACHE_DIR / "jev_runs_v2.json"
path.write_text(json.dumps(cache, ensure_ascii=False), encoding="utf-8")
@@ -395,9 +402,15 @@ def write_markdown(report: Mapping[str, Any]) -> None:
f"- 任务:`docs/tasks/TASK-rectification-jev-intent-classifier-research-20260919.md`",
f"- 基线:`origin/staging` @ `{report['meta']['baseline']}`",
f"- Jev 模型:`{JEV_MODEL}`(不用 jev-latest",
f"- 生成器 / 复核:`{report['meta']['generator']}` / `{report['meta']['reviewer']}`",
f"- 真值 sha256synthetic `{report['meta']['sha256']['synthetic']}`simulated `{report['meta']['sha256']['simulated']}`disputed `{report['meta']['sha256']['disputed']}`",
f"- 来源 B{report['meta']['source_b_n']} 条(本地,不提交原文)",
f"- 来源 B{report['meta']['source_b_n']}已标注(本地,不提交原文)",
"",
"## 模型",
"",
f"- 生成模型:`{report['meta']['generator']}` / 版本 `{report['meta'].get('generator_version') or report['meta']['generator']}` / 不是线上会话模型(只用于造来源 C)",
f"- 复核模型:`{report['meta']['reviewer']}` / 版本 `{report['meta'].get('reviewer_version') or report['meta']['reviewer']}` / 不是线上会话模型(只用于独立复核,看不到目标标签)",
f"- 对照模型:`{report['meta'].get('current_model') or ''}` / 版本 `{report['meta'].get('current_model') or ''}` / **= 线上会话模型**DeepSeek Flash,顶生产 `classifyRectificationTurnIntent` 提示词)",
f"- Jev`{JEV_MODEL}` / 不是线上会话模型",
"",
"## 结论",
"",
@@ -535,10 +548,9 @@ def decide_verdict(report: dict[str, Any]) -> dict[str, str]:
low_recall = [layers[layer]["low_conf_recall"] for layer in layers if layers[layer]["low_conf_recall"] is not None]
recall_ok = bool(low_recall) and all(v is not None and v >= 0.60 for v in low_recall)
choice_class = layers.get("choice", {}).get("answer_class_acc")
if source_b_n < 30:
represent = "来源 B 不足 30 条,代表性检验只报数、不判定。"
else:
represent = report["metrics"]["representativeness"]["note"]
represent_meta = report["metrics"].get("representativeness") or {}
represent = represent_meta.get("note") or ""
represent_fail = bool(represent_meta.get("fail"))
absolute_fail: list[str] = []
if high_err > 0.03:
absolute_fail.append(f"高置信错误率 {high_err:.1%} > 3%")
@@ -563,6 +575,17 @@ def decide_verdict(report: dict[str, Any]) -> dict[str, str]:
)
if bits:
relative_note = " 相对 3pp(同一样本):" + "".join(bits) + ""
if represent_fail:
return {
"verdict": "缺数据",
"reason": (
"来源 B 与来源 C 同层 intent 准确率差 > 10pp,模拟语料不代表真人,来源 C 门槛结论降为缺数据。"
+ represent
+ ((" 同时来源 C 绝对门槛未过:" + "".join(absolute_fail) + "") if absolute_fail else "")
+ relative_note
),
"if_connect": "不得上线。先补真机样本或重造更像真人的来源 C,再测。",
}
if absolute_fail:
return {
"verdict": "不可接",
@@ -628,6 +651,8 @@ def _merge_report_preds(samples: list[dict[str, Any]]) -> None:
by_id = {row.get("id"): row for row in existing.get("rows") or [] if row.get("id")}
for sample in samples:
prior = by_id.get(sample.get("id")) or {}
if prior.get("user_message") != sample.get("user_message"):
continue
for key in ("jev_1", "jev_2", "current_1", "current_2"):
if key not in sample and prior.get(key):
sample[key] = prior[key]
@@ -666,6 +691,7 @@ def main(argv: Sequence[str] | None = None) -> int:
parser.add_argument("--second-fraction", type=float, default=1.0)
parser.add_argument("--current-only", action="store_true")
parser.add_argument("--sample-fraction", type=float, default=1.0)
parser.add_argument("--current-second-fraction", type=float, default=1.0 / 3)
parser.add_argument("--sample-seed", type=int, default=20260919)
args = parser.parse_args(argv)
if not args.current_only and not os.environ.get("TYPESAFE_API_KEY"):
@@ -676,8 +702,14 @@ def main(argv: Sequence[str] | None = None) -> int:
return 2
synthetic = load_jsonl(SAMPLES_DIR / "synthetic.jsonl")
simulated = load_jsonl(SAMPLES_DIR / "simulated.jsonl")
source_b = load_jsonl(CACHE_DIR / "source_b.jsonl")
source_b_all = load_jsonl(CACHE_DIR / "source_b.jsonl")
source_b = [
row for row in source_b_all
if isinstance(row.get("gold"), dict) and row["gold"].get("intent")
]
unlabeled_b = len(source_b_all) - len(source_b)
samples = [row for row in synthetic + simulated if row.get("source") in {"A", "C"}]
sim_ids = {str(row.get("id")) for row in simulated}
if args.limit:
samples = samples[: args.limit]
_merge_report_preds(samples)
@@ -699,6 +731,8 @@ def main(argv: Sequence[str] | None = None) -> int:
if source_b:
run_batch(source_b, workers=args.workers, run_id="jev_1", cache=cache)
save_cache(cache)
run_batch(source_b, workers=args.workers, run_id="jev_2", cache=cache)
save_cache(cache)
source_c_rows = [row for row in samples if row.get("source") == "C"]
if args.current_only or os.environ.get("DEEPSEEK_API_KEY"):
if args.sample_fraction < 1:
@@ -713,9 +747,21 @@ def main(argv: Sequence[str] | None = None) -> int:
cache=cache, call_fn=call_current_retry,
)
save_cache(cache)
if source_b:
run_batch(
source_b, workers=args.workers, run_id="current_1",
cache=cache, call_fn=call_current_retry,
)
save_cache(cache)
second_current = current_sample
if args.skip_second:
second_current = []
elif args.current_second_fraction < 1:
second_current = stratified_sample(
[row for row in current_sample if row.get("source") == "C"],
fraction=args.current_second_fraction,
seed=args.sample_seed + 1,
)
elif args.second_fraction < 1:
second_current = stratified_sample(
[row for row in current_sample if row.get("source") == "C"],
@@ -752,47 +798,87 @@ def main(argv: Sequence[str] | None = None) -> int:
jev_cons = {layer: self_consistency(rows, "jev_1", "jev_2") for layer, rows in by_layer.items()}
source_a_metrics = layer_metrics(source_a, pred_key="jev_1") if source_a else None
source_b_metrics = layer_metrics(source_b, pred_key="jev_1") if source_b else None
represent_note = "来源 B 不足 30 条,代表性检验只报数、不判定。"
if source_b_metrics and source_b_metrics["n"] >= 30:
deltas = []
source_b_by_layer = {
layer: layer_metrics([row for row in source_b if row.get("layer") == layer], pred_key="jev_1")
for layer in ("choice", "collect", "none")
} if source_b else {}
represent_fail = False
represent_layers: dict[str, Any] = {}
if not source_b or len(source_b) < 30:
represent_note = f"来源 B 已标注 {len(source_b)} 条(未标注 {unlabeled_b} 不进分母),不足 30 条则只报数、不判定。"
else:
bits = []
for layer in ("choice", "collect", "none"):
# source B may not be layered the same; compare overall intent acc
pass
delta = abs((source_b_metrics["intent_acc"] or 0) - (
sum(jev_metrics[layer]["intent_acc"] * jev_metrics[layer]["n"] for layer in jev_metrics)
/ max(sum(jev_metrics[layer]["n"] for layer in jev_metrics), 1)
))
if delta > 0.10:
represent_note = f"来源 B 与来源 C 的 intent 准确率相差 {delta:.1%} > 10pp,模拟语料不代表真人,来源 C 门槛结论降为缺数据。"
b_m = source_b_by_layer.get(layer) or {}
c_m = jev_metrics.get(layer) or {}
if not b_m.get("n"):
represent_layers[layer] = {"n": 0, "delta": None}
continue
delta = abs((b_m.get("intent_acc") or 0) - (c_m.get("intent_acc") or 0))
represent_layers[layer] = {
"n": b_m.get("n"),
"source_b_intent": b_m.get("intent_acc"),
"source_c_intent": c_m.get("intent_acc"),
"delta": delta,
}
bits.append(f"{layer} B {b_m.get('intent_acc'):.1%} vs C {c_m.get('intent_acc'):.1%}(差 {delta:.1%}n_B={b_m.get('n')}")
if delta > 0.10:
represent_fail = True
represent_note = "来源 B 与来源 C 同层 intent 准确率:" + "".join(bits) + ""
if represent_fail:
represent_note += " 有层差 > 10pp,结论降为缺数据。"
else:
represent_note = f"来源 B 与来源 C intent 准确率相差 {delta:.1%}未超过 10pp。"
represent_note += " 各层均未超过 10pp。"
sha = {
"synthetic": __import__("hashlib").sha256((SAMPLES_DIR / "synthetic.jsonl").read_bytes()).hexdigest(),
"simulated": __import__("hashlib").sha256((SAMPLES_DIR / "simulated.jsonl").read_bytes()).hexdigest(),
"disputed": __import__("hashlib").sha256((SAMPLES_DIR / "disputed.jsonl").read_bytes()).hexdigest()
if (SAMPLES_DIR / "disputed.jsonl").is_file() else "",
}
gen_name = (simulated[0].get("generator") if simulated else None) or "deepseek-flash"
rev_name = (simulated[0].get("reviewer") if simulated else None) or "deepseek-flash"
cache_ids = {
key.split(":")[1]
for key in cache
if key.startswith("jev_1:C-")
}
sim_ok = sim_ids <= cache_ids or args.current_only
print(json.dumps({
"id_check": {
"simulated": len(sim_ids),
"jev_1_cache_c": len(cache_ids),
"simulated_subset_of_cache": sim_ids <= cache_ids,
"missing": sorted(sim_ids - cache_ids)[:12],
}
}, ensure_ascii=False), flush=True)
report: dict[str, Any] = {
"meta": {
"baseline": "d9722d56",
"baseline": "69a44fe7",
"jev_model": JEV_MODEL,
"generator": "agent-template-v1",
"reviewer": "agent-rule-v1",
"generator": gen_name,
"generator_version": gen_name,
"reviewer": rev_name,
"reviewer_version": rev_name,
"sha256": sha,
"source_b_n": len(source_b),
"source_b_unlabeled": unlabeled_b,
"current_model": current_model_id() if any(row.get("current_1") for row in samples) else None,
"current_model_note": (
(
f"DeepSeek Flash 顶现行 `classifyRectificationTurnIntent` 提示词;"
f"来源 C 分层随机 {args.sample_fraction:.0%}seed {args.sample_seed}),"
f"来源 A 全量。不是线上会话模型。"
"DeepSeek Flash = 线上会话模型,顶现行 `classifyRectificationTurnIntent` 提示词;"
f"来源 C 全量第一次"
+ (
f",第二次分层 {args.current_second_fraction:.0%}seed {args.sample_seed + 1}"
if args.current_second_fraction < 1 else ",第二次全量"
)
+ ";来源 A 全量;来源 B 已标注全量一次。"
if any(row.get("current_1") for row in samples)
else (
"本机无会话模型目录凭据(模型 key 在数据库加密配置里)"
"现行 `classifyRectificationTurnIntent` 对照未跑。"
"本机无会话模型凭据,现行对照未跑"
)
)
),
"id_check_ok": sim_ok,
},
"metrics": {
"jev_by_layer": jev_metrics,
@@ -817,7 +903,12 @@ def main(argv: Sequence[str] | None = None) -> int:
"paired_sample": paired_layer_metrics(samples) if any(row.get("current_1") for row in samples) else {},
"source_a": source_a_metrics,
"source_b": source_b_metrics,
"representativeness": {"note": represent_note},
"source_b_by_layer": source_b_by_layer,
"representativeness": {
"note": represent_note,
"fail": represent_fail,
"layers": represent_layers,
},
"theta": curve_theta([row for row in samples if row.get("source") == "C"]),
"error_portrait": error_portrait(samples),
},
+98 -11
View File
@@ -34,20 +34,107 @@ limit 500;
```
- 本地路径(worktree 外,已 gitignore):`G:/Ferti/Jyotisha/.cache/jev_intent/source_b.jsonl`
- 本机抽取条数:0(无 staging 库凭据则为 0,长度分布用任务书兜底 P25≤6 / 中位≤15 / P75≤40
- 真值:执行方逐条人工标注;能从后续动作反推的另存 `runtime_intent` 列。**不得提交原文。**
- 本机抽取条数:157(点选 17 / 采集 107 / 无焦点 33),gold 已全部人工标注,未用模型代标
- 长度:P25=12 / 中位=21 / P75=28 / 最长=172
- 标注耗时:约 40 分钟(`runtime_intent` 只作参考,85 条有反推 intent,不抄成 gold
- 真值:执行方逐条人工标注。**不得提交原文。**
## 来源 C · Agent 模拟语料(提交,主测试集)
## 来源 C · 模型模拟语料(提交,主测试集)
`simulated.jsonl`。问题池 `question_pool.json`20 例公开 AA holdout 走 `discriminating_event_probes` 出点选题;采集题用 `USER_COLLECT_QUESTION` / retry / `TARGETED_YEAR_PROMPT`
`simulated.jsonl`。问题池 `question_pool.json`20 例公开 AA holdout 走 `discriminating_event_probes` 出点选题;采集题用 `USER_COLLECT_QUESTION` / retry / `TARGETED_YEAR_PROMPT`生成与复核各一次真实模型调用;复核看不到目标标签。
- 生成`agent-template-v1`(标签先定再写回复;本机无会话模型凭据,不走线上贵模型
- 复核`agent-rule-v1`(不同规则、看不到目标标签;不一致进 `disputed.jsonl`,不用第三次投票
- 生成统计:{"generated": 1328, "accepted": 900, "disputed": 113, "dispute_rate": 0.08509036144578314, "generator": "agent-template-v1", "reviewer": "agent-rule-v1", "seed": 20260919}
- 配额:{"choice": {"actual": 400, "target": 400, "max_share_delta": 0.0, "ok": true}, "collect": {"actual": 400, "target": 400, "max_share_delta": 0.0, "ok": true}, "none": {"actual": 100, "target": 100, "max_share_delta": 0.0, "ok": true}}
- 长度{"n": 900, "p25": 3.0, "median": 11.0, "p75": 25.0}
- sha256 simulated: `a8611e75bf56024fa984fb204d34a5e16405f18b3eaa5a3bee91f96e43918bf7`
- sha256 disputed: `b4aed8567bd6b3fdd5cc98c73d9139197d62a96120a0ee29f474b8f08c050def`
- 生成模型`deepseek-flash`temperature 0.85prompt_version `gen-review-v3`
- 复核模型`deepseek-flash`temperature 0.0,同一家模型、不同提示、看不到标签
- 生成统计:{"generated": 1261, "accepted_raw": 1225, "accepted": 900, "disputed": 36, "dispute_rate": 0.028548770816812053, "generator": "deepseek-flash", "reviewer": "deepseek-flash", "prompt_version": "gen-review-v3", "seed": 20260919, "usage": {"generate_input_tokens": 553685, "generate_output_tokens": 18677, "review_input_tokens": 700669, "review_output_tokens": 29296, "generate_calls": 1389, "review_calls": 1318, "generate_cached": 53, "review_cached": 79}, "reselect_only": true}
- 争议分层:{"by_layer": {"collect": 33, "choice": 3}, "by_intent": {"answer_current_focus": 33, "unclear": 3}}
- 配额{"choice": {"actual": 400, "target": 400, "max_share_delta": 0.045, "ok": true}, "collect": {"actual": 400, "target": 400, "max_share_delta": 0.0325, "ok": true}, "none": {"actual": 100, "target": 100, "max_share_delta": 0.0, "ok": true}}
- 长度:{"n": 900, "p25": 16.0, "median": 20.0, "p75": 24.0, "min": 6.0, "max": 39.0}
- 人设:{"choice_collect": {"rambling": 371, "answer_then_event": 94, "deny_then_event": 49, "terse": 51, "impatient_stop": 57, "ask_result": 51, "off_topic": 48, "dialect_netspeak": 79}, "all": {"rambling": 407, "answer_then_event": 94, "deny_then_event": 49, "terse": 71, "impatient_stop": 63, "ask_result": 54, "off_topic": 53, "dialect_netspeak": 109}, "each_ge_40": true, "terse_dialect_share_all": 0.2, "terse_dialect_share_choice_collect": 0.1625, "min_choice_collect": 48}
- 去重:{"n": 900, "unique": 825, "max_repeat": 5, "unique_ok": true, "repeat_ok": true}
- sha256 simulated: `53f13012fdc8f3721335bbe2961edf8c506a2f705b62bd9d302fce83ce2ef88d`
- sha256 disputed: `e80c5cd69c521a099d743e4a4632ad6bc103c3b5a505f5b376a7c9cebedb7646`
- 问题池条数(点选题):103
### 生成提示原文
系统:`你在模拟一位真人用户,正在做出生时间校正问答。只输出用户会打的那句话,不要解释,不要加引号,不要输出 JSON。`
用户提示模板示例:
```
当前问题:
2023 年前后,工作状态是否出现明显变化?
选项:
- A. 这段时间没有明显变化(对应态度:no)
- B. 记不清当时的情况(对应态度:unsure)
- C. 变化明显而且时间吻合(对应态度:yes)
- D. 有变化但程度比较弱(对应态度:weak_yes)
你必须体现的语义(不要写出这些标签名,不要解释标签):
- 这句话的作用:这句话是在直接回答当前这道题,不是另起一件无关的事,不是要求停止整套校正,也不是在问结果。
- 对当前问题的态度:明确否定当前问题:没有发生、没有变化、这方面没什么。不要再补一句「其实也有一点」。
- 是否另说一件带年月的新经历:不要另说一件带年份或月份的新经历。若当前是采集题且态度是肯定或弱肯定,可以在回答里带上这件事本身的年月,那是在答当前题,不是另说一件;这种情况下也必须出现四位数字年份。若不是采集题的肯定回答,不要写任何 19xx / 20xx 年份。
人设:口语啰嗦,会绕半句再落到要点,但仍要把必需要素说清楚。少用「嗯/啊/emmm」。
硬约束:
- 只输出用户会打的那句话
- 字数约 16–28 个汉字(含标点),不要明显超出
- 不得逐字复述上面的选项原文
- 不得出现真实姓名、地名、学校名、公司名、医院名、单位名
- 不要用「有的 / 发生了 / 就是那段 / 没这回事」这种套话,写得像真人随手打的
- 需要带时间时,用大概年份或年月,事件用普通生活经历
```
### 复核提示原文
系统:`你只做出生时间校正当前轮的意图分类。不回答用户,不修改状态。只输出一个 JSON 对象,不要解释。`
用户提示模板示例:
```
根据当前问题和用户回复分类。看不到任何预设标签。
intent 只能是:
- answer_current_focus:用户在回答当前问题
- provide_new_evidence:没有回答当前问题,只补充了一件带大概年或月的经历
- stop_rectification:明确要求停止整个校正;说当前这件事没发生不是停止
- ask_about_result:在问结果、范围、候选分钟或好了没
- unclear:以上都不成立,或混在一起无法单选
answer_class
- 仅当 intent 是 answer_current_focus 时非空,否则必须为 null
- 点选题:按选项 label 的含义选 yes / weak_yes / no / unsure,不要按 A/B/C/D 位置猜
- 采集题:没有/没发生/这方面没什么 → no;记不清/不记得/忘了/想不起来/以后再说 → unsure;
用带大概年月的经历直接回答当前采集题 → yes(程度弱则为 weak_yes
- 不要把「没有」或「记不清」标成 yes
- 采集题若既没有否定、也没有记不清、也没有带年月经历 → intent 为 unclearanswer_class 为 null
- 同一句既明确否定当前采集题又补充了新的带时间经历:intent 仍为 answer_current_focusanswer_class 为 no
has_new_dated_event
- 仅在同一句里除了回答当前问题之外,还提供了新的、带大概时间的经历时为 true
- 单纯否定、单纯记不清、或只用带年月经历来直接回答当前采集题,都是 false
- 无当前问题时,带年月的经历 → intent 为 provide_new_evidencehas_new_dated_event 为 true
只输出:
{"intent":"...","answer_class":"yes"|"weak_yes"|"no"|"unsure"|null,"has_new_dated_event":true|false}
当前问题:
2023 年前后,工作状态是否出现明显变化?
选项:
- A. 这段时间没有明显变化 (answer_class=no)
- B. 记不清当时的情况 (answer_class=unsure)
- C. 变化明显而且时间吻合 (answer_class=yes)
- D. 有变化但程度比较弱 (answer_class=weak_yes)
用户回复:
(用户回复)
```
公开案例姓名不得出现在回复正文。
@@ -1,113 +1,36 @@
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1990 年 12 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0036", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "发生了,当时身边人也没特别提,我自己也没当回事,我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2007 年 1 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0042", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "发生了,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想起来细"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2026 年 11 月前后,有没有收入明显变化、大笔支出或欠债?", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0048", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "发生了,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想起来细"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2010 年 11 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0056", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "就是那段,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边人也没特别提,我自己也没当回事"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2014 年 10 月前后,有没有生病、受伤或压力特别大", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0057", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,当时身边人也没特别提,我自己也没当回事,我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1981 年 12 月前后,有没有搬家或长期住到外地", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0072", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "确实有,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就是那种说不上。另外2015年11月职责变重"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1990 年 12 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0121", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "将就吧,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1966 年 1 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0155", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "一点点,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边人也没特别提。另外2024年4月搬家"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1953 年 1 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0162", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "好像有过,别的先不说,就这一句你先记着,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边。另外2003年6月离职"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2003 年 4 月前后,有没有搬家或长期住到外地", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0257", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "记不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边人也没特别"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2022 年 1 月前后,有没有升学、转学或换学习环境", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0258", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "记不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说,就这一句你先记着,现在回想起来细节"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2003 年 12 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0263", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "说不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就是那种说不上来特别大但也不"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2000 年 12 月前后,有没有搬家或长期住外地?", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0265", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "记不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想起来细节对不上,只能说个大概"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1994 年 12 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0277", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "记不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边人也没特别提,我自己也没当回事"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2020 年 6 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0284", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "以后再说,别的先不说,就这一句你先记着,我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2014 年 10 月前后,有没有生病、受伤或压力特别大", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0316", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "忘了,现在回想起来细节对不上,只能说个大概,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1991 年 3 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0325", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "记不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想起来细节对不上,只能说个大概,。另外2024年7月家里添丁"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1979 年 7 月前后,有没有家人结婚、添丁或住院?", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0331", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "忘了,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就是那种说不上来特别大但也不。另外2015年10月换学校"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1991 年 3 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-choice-0348", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2022年12月开始长期住外地。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1985 年 7 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-choice-0350", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2020年11月离职。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "20143 月前后,有没有入职、换工作或职责加重", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-choice-0353", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2003年12月换学校。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "2021 年 10 月前后,有没有家人结婚、添丁或住院", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-choice-0381", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2021年4月入职。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1982 年 1 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "id": "C-choice-0481", "layer": "choice", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "user_message": "先不问这题了,出结果了吗,范围呢。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0740", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "说不清,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0757", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "以后再说,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想起来细节对不上,只能说个大概"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0758", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "忘了,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说,就这一句你先记着"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0806", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "说不清,现在回想起来细节对不上,只能说个大概,我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0810", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "忘了,我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说,就这一句你先记着,别的"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0817", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,2016年9月开始长期住外地。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0823", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,1999年4月入职。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说,就这一句你先记着"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0837", "layer": "collect", "persona": "rambling", "review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,1998年4月转学。现在回想起来细节对不上,只能说个大概,现在回想起来细节对不上,只能说个大概"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0846", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,2014年10月长辈住院。我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起分开还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0884", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2018年认"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0886", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2002年职"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0887", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "1999年分"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0888", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2016年职"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0889", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2013年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0890", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2024年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0892", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2016年职"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0893", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2014年收"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0895", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2022年搬"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0896", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2015年长"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0898", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,大概2016年转学吧,印象不深。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0899", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2017年受"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0900", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2020年受"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0901", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2024年搬"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0902", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2020年生"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0905", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,大概2014年有过大笔支出吧,印象不深。别的先不说,就这一句你先记着,我想想啊就是那种说不上来特别大但也不是完全没有的感觉"}
{"focus": {"case_status": "collecting_evidence", "current_question": "有没有哪年搬家,或开始长期住在外地?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0906", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2022年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0910", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2020年长"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0911", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2011年收"}
{"focus": {"case_status": "collecting_evidence", "current_question": "有没有哪年搬家,或开始长期住在外地?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0916", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,大概2013年1月搬家吧,印象不深。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0917", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2009年家"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0918", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2009年升"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0919", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2010年认"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0921", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2010年欠"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0926", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2014年职"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0929", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2008年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0931", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "有的,大概2005年大考吧,印象不深。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就是那种说不上来"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0933", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2003年长"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0934", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2007年结"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0935", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2009年转"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0937", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2004年升"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0938", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2024年结"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0940", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2002年特"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0942", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2007年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0943", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2001年收"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0945", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2007年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0946", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2000年分"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边,还记得哪年生病、受伤,或特别难熬的一段时间吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0949", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2006年生"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0952", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2003年转"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0953", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2021年搬"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0957", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2008年家"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0960", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2009年搬"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0961", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2004年收"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0962", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2010年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "有没有哪年搬家,或开始长期住在外地?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0965", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2008年开"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0967", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2004年搬"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0968", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2009年大"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0969", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2011年分"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0970", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2014年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0971", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2020年有"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0972", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2000年特"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0973", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2018年家"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0974", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2006年升"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0975", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2008年有"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0976", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "1998年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "有没有哪年搬家,或开始长期住在外地?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0978", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2016年开"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0982", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2021年转"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0983", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2004年职"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0984", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2007年换"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0986", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2003年家"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0987", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2002年家"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0989", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2014年分"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0990", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2024年生"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0995", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2000年长。另外2016年4月收入明显变过"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0996", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2021年换。另外2018年6月分开"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-1002", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2005年换。另外2007年12月特别难熬过一段时间"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-1005", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2005年结。另外2022年7月职责变重"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-1009", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2013年收。另外2012年5月长辈住院"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边再问一次:哪年生病、受伤,或特别难熬?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-1014", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "1999年特。另外2011年8月长辈住院"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-1017", "layer": "collect", "persona": "terse", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "2004年升。另外2010年6月分开"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1030", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2020年5月转学。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1033", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2003年7月生病。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1045", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:1999年9月生病。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身边人"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1047", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2007年12月受伤。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在回想"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1060", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2000年4月换城市住。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,当时身"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1073", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2015年9月离职。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,别的先不说"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1074", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2019年3月认真在一起。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,现在"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1080", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:1998年3月大考。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月?", "kind": "collect", "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "id": "C-collect-1089", "layer": "collect", "persona": "rambling", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "user_message": "另外说一件:2006年5月升学。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,我想想啊就"}
{"focus": {"case_status": "collecting_evidence", "current_question": "", "kind": null, "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "id": "C-none-1288", "layer": "none", "persona": "rambling", "review": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "user_message": "先不问这题了,出结果了吗,范围呢。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,"}
{"focus": {"case_status": "collecting_evidence", "current_question": "", "kind": null, "options": []}, "generator": "agent-template-v1", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "id": "C-none-1289", "layer": "none", "persona": "rambling", "review": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "reviewer": "agent-rule-v1", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "ask_about_result"}, "user_message": "先不问这题了,出结果了吗,范围呢。我想想啊就是那种说不上来特别大但也不是完全没有的感觉,"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0387", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "那年二三月吧,变化不大。另外2018年搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0377", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "升学那会儿印象不深,对了2016年搬过家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0380", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "好像有吧,记不太清。对了,2019年搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0323", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "好像那阵子是有过一点小变化,大概2013年夏天前后吧。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0336", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2020年搬过一次,不太记得。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到工作这边——刚才那件我记下了,哪年入职或换工作还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0391", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "入职换工作那块印象不深,好像动过但说不准;另外2018年我搬过一次家。"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1973 年 12 月前后,有没有家人结婚、添丁或住院", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0126", "layer": "choice", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "73年那阵子好像有点动静,但记不太清"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0388", "layer": "collect", "persona": "deny_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "工作换过但记不太清,倒是2018年搬了次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0381", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "搬过一两次吧,不太记得清了。另外2018年换过工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0382", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "钱上好像没太明显的变化。另外2018年换过一次工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "id": "C-collect-0538", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": false, "intent": "stop_rectification"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "user_message": "这我还真一下掰扯不清,先别按这个往下算吧。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0372", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "钱上好像没太大起伏,就感觉一般。对了,2021年我换了个工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0385", "layer": "collect", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "搬出去住好像不太明显,另外2019年换过工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0326", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2019年换过一次,变化不大。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "id": "C-collect-0531", "layer": "collect", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "user_message": "那会儿光顾着玩了,哪还记这些啊。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面再对一下:哪年收入明显变过、有过大笔支出,或欠过债", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0378", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "钱上好像就小幅波动过,不太记得。对了2018年搬过家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0379", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "大概2010年前后吧,记不太清。另外2016年我搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起、分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0347", "layer": "collect", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "reject_reason": "collect_yes_needs_date", "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "前几年好像谈过一段,后来散了,具体哪年记不太清。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0338", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2017年3月添丁,不太记得。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "大概哪年几月", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "id": "C-collect-0537", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": null, "has_new_dated_event": false, "intent": "unclear"}, "user_message": "这个我实在说不上来。"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "19885 月前后,有没有收入明显变化、大笔支出或欠债", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-choice-0155", "layer": "choice", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "感觉那阵子钱上有点紧,不太确定。另外2019年搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "身体或压力这边,还记得哪年生病、受伤,或特别难熬的一段时间吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0384", "layer": "collect", "persona": "deny_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "身体这块没什么特别印象,不过2021年我换过工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "上学这边,还记得哪年升学、转学或大考吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0369", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "升学那会儿印象不深,另外2018年搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0364", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "真要认真算也就2018年那阵子,在一起过,但感觉一直淡淡的,后来也慢慢散了。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0386", "layer": "collect", "persona": "deny_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "升学好像没啥特别深的印象,不过2018年我搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "搬家或开始长期住外地,大概是哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0375", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "好像搬过,不太确定。另外2016年换过工作。"}
{"focus": {"case_status": "distinguishing_candidates", "current_question": "1986 年 10 月前后,有没有家人结婚、添丁或住院", "kind": "choice", "options": [{"answer_class": "yes", "key": "A", "label": "明确发生且时间吻合"}, {"answer_class": "weak_yes", "key": "B", "label": "发生过但程度较弱"}, {"answer_class": "no", "key": "C", "label": "明确没有发生"}, {"answer_class": "unsure", "key": "D", "label": "这段记不清楚"}]}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-choice-0112", "layer": "choice", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "1986年那会儿好像家里是有点事,但印象不深。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "有没有哪年搬家,或开始长期住在外地?", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0368", "layer": "collect", "persona": "rambling", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "搬出去住大概是2016年,住得不久,印象不太深。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到上学这边——哪年升学、转学或大考,还记得吗", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0371", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "升学好像有点印象,不太深吧。对了,2018年还搬过一次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "家里如果有结婚、添丁或住院这类事,记得大概哪年就行。", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0392", "layer": "collect", "persona": "deny_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "家里添丁这事我印象不深,另外2021年换过一次工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "工作上呢,还记得哪年入职、换工作,或职责一下子变重吗?", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0374", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": null, "has_new_dated_event": true, "intent": "provide_new_evidence"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "工作换过但印象不深,另外2018年搬了次家。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院大概哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0367", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2016年添过丁,不太顺。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "感情这边,还记得哪年认真在一起分开,或结婚吗?有年份就很好。", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0390", "layer": "collect", "persona": "deny_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "no", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "感情上好像没哪年特别认真过,对了2019年换过一次工作。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "回到感情这边——刚才说的工作我记下了,哪年认真在一起或分开还记得吗?", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0333", "layer": "collect", "persona": "dialect_netspeak", "prompt_version": "gen-review-v3", "reject_reason": "collect_yes_needs_date", "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "那阵子好像是20年吧,凑合在一块儿过,后来就慢慢淡了。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "再问一次家里:结婚、添丁或住院,大概哪年", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "id": "C-collect-0361", "layer": "collect", "persona": "terse", "prompt_version": "gen-review-v3", "review": {"answer_class": "yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": false, "intent": "answer_current_focus"}, "user_message": "2016年添过丁,不太记得清。"}
{"focus": {"case_status": "collecting_evidence", "current_question": "钱的方面,还记得哪年收入明显变过、有过大笔支出,或欠过债吗?", "kind": "collect", "options": []}, "generator": "deepseek-flash", "gold": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "id": "C-collect-0370", "layer": "collect", "persona": "answer_then_event", "prompt_version": "gen-review-v3", "review": {"answer_class": "unsure", "has_new_dated_event": true, "intent": "answer_current_focus"}, "reviewer": "deepseek-flash", "source": "C", "target_before_review": {"answer_class": "weak_yes", "has_new_dated_event": true, "intent": "answer_current_focus"}, "user_message": "钱上好像没太大起伏,记不太清了。对了,2018年换过工作。"}
File diff suppressed because it is too large Load Diff