'use client' import { Info } from 'lucide-react' import type { AdvisorResponse } from '@/lib/sdk/advisor/contract' import { Markdown } from './Markdown' /** * Clarify mode: a short general (L1) definition — explicitly marked as general, no legal source — * plus domain context chips. Picking a chip re-runs the case scoped to that domain (-> L2). */ export function ClarifyView({ response, onSelectContext, busy, }: { response: AdvisorResponse onSelectContext: (id: string) => void busy: boolean }) { const chips = response.clarity.suggested_contexts ?? [] return (