import { BookOpen, ExternalLink } from 'lucide-react'; import type { ToolCallView } from '@/lib/types'; interface Source { index: number; course: string; module: string; section: string; page: string; url: string; excerpt: string } export function CourseSourceCard({ call }: { call: ToolCallView }) { const p = call.payload as { query?: string; sources?: Source[] }; const sources = p.sources || []; if (!sources.length) return

Aucun passage trouvé dans le matériel du cours.

; return ( ); }