项目首页
GTGeoTask 每周一例 · GT09
← GT08

低空飞行 · 临时禁飞通知冲突

两张临时禁飞通知时间不一样,无人机还能起飞吗?

无人机计划在08:00–09:00执行任务。通知A说08:30起禁飞,通告B却说09:30才生效;GT09不擅自选一份相信,而是进入冲突复核。

next_action = request_conflict_review

两张禁飞通知都已核验,却推导出相反结果

来源 A08:30–10:00时间重叠 trueverified 来源 B09:30–11:00时间重叠 falseverified 证据冲突T / F 冲突复核任务

来源 A · 低空管理临时禁飞通知

08:30–10:00
时间重叠 true

来源 B · 运行保障通告

09:30–11:00
时间重叠 false

两份来源都标记为verified,但verified只表示各自来源已核验,不表示它们彼此一致。

发现冲突后,系统进入复核闭环

证据冲突conflicted 冲突复核任务request_conflict_review 暂停危险输出block 解决后恢复resume

本地生成的冲突复核任务

resolve-restricted-schedule-conflict

冲突类型:incompatible_verified_sources

必须形成:

复核期间阻断:

full_conflict
automatic_approval

恢复条件:evidence_conflict_resolved == true

第一步:让模型选择处理动作

模型可以选择直接相信来源A、直接相信来源B,或者发起冲突复核。没有明确优先级规则时,前两项都属于擅自裁决。

得到模型建议后返回本页,选择对应动作并验证。

查看将被复制的完整 GeoTask
geotask:
  id: "gt09-evidence-conflict-review"
  name: "GT09 UAV No-Fly Notice Conflict Review"
  schema_version: "1.0"

application_context:
  scenario: "uav_temporary_no_fly_notice_conflict"
  planned_flight_window: "08:00-09:00"
  decision_question: "Can the UAV mission proceed?"

known_results:
  route_intersects_zone: true
  altitude_conflict: true
  temporal_conflict_authority_a:
    value: true
    status: "verified"
    schedule: "08:30-10:00"
  temporal_conflict_bulletin_b:
    value: false
    status: "verified"
    schedule: "09:30-11:00"

extensions:
  evidence_conflict:
    id: "resolve-restricted-schedule-conflict"
    conflict_type: "incompatible_verified_sources"
    conflicting_assertions:
      - "temporal_conflict_authority_a"
      - "temporal_conflict_bulletin_b"
    blocked_outputs:
      - "full_conflict"
      - "automatic_approval"
    resolution_required_fields:
      - "authoritative_source"
      - "superseded_version"
      - "effective_schedule"
      - "resolution_basis"
      - "resolved_by"
      - "resolved_at"
    resume_when: "evidence_conflict_resolved == true"
    next_action: "request_conflict_review"
    expected_status: "conflicted"

instructions_for_model:
  - "Choose the next action from trust_source_a, trust_source_b, or request_conflict_review."
  - "Do not choose a source unless an explicit authority or precedence policy is provided."
  - "If conflict review is chosen, preserve blocked outputs, required resolution fields, and resume condition."
  - "Mark model-produced fields as model_generated."
  - "Do not claim local_deterministic verification unless a separate executor has run."

第二步:验证模型选择的动作

验证结果等待选择
模型候选动作
本地下一步request_conflict_review
证据状态conflicted
Core执行状态completed

候选来源:model_generated;时间区间复算和冲突检测:local_deterministic。

GT09不会自动决定哪个来源更权威。来源优先级、版本替代关系和裁决责任必须由外部制度或人工复核提供。

查看项目与继续体验

GT10 已上线:两台仓储机器人争用单向窄通道时,系统会按显式优先级生成等待与恢复计划。