2 import { RotateCw } from '@lucide/svelte';
3 import { Button } from '$lib/components/ui/button';
4 import ChatMessageActionCard from './ChatMessageActionCard.svelte';
7 onDecision: (shouldContinue: boolean) => void;
10 let { onDecision }: Props = $props();
13 <ChatMessageActionCard icon={RotateCw}>
15 Agentic turn limit reached. Continue?
19 <Button size="sm" onclick={() => onDecision(true)}>Continue</Button>
24 class="text-destructive hover:text-destructive"
25 onclick={() => onDecision(false)}
30 </ChatMessageActionCard>