"use client"; import type { Observation } from "../lib/types"; import { formatScore } from "../lib/theme"; export default function MissionBriefing({ observation, score, detections, poisonings, }: { observation: Observation | null; score: number | undefined; detections?: number; poisonings?: number; }) { const stakes = observation?.stakes_level ?? 0; const highStakes = stakes >= 0.7; return ( <>
{observation?.current_subtask ?? "Reset the episode to begin."}