'use client' import { Library } from 'lucide-react' import type { KnowledgeUnit } from '@/lib/sdk/advisor/evidence' import { KnowledgeUnitCard } from './KnowledgeUnitCard' import { PaneHeader } from './PaneHeader' /** Sources pane — the answer's evidence as hierarchical Knowledge Units, separate from the prose. */ export function SourcesPane({ sources }: { sources: KnowledgeUnit[] }) { return (
} title="Quellen" count={sources.length} /> {sources.length === 0 ? (

Keine strukturierten Quellen zu dieser Antwort.

) : (
{sources.map((s) => ( ))}
)}
) }