interface Props { message?: string onRetry?: () => void } export function TimeoutError({ message, onRetry }: Props) { return (

{message ?? 'The query took too long to respond.'}

This can happen when agents are under heavy load. Try again in a moment.

{onRetry && ( )}
) }