import React from 'react'; import { Zap } from 'lucide-react'; import { Switch } from '../ui/switch'; import { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider } from '../ui/tooltip'; interface StreamToggleProps { isStreaming: boolean; onStreamingChange: (enabled: boolean) => void; className?: string; } export function StreamToggle({ isStreaming, onStreamingChange, className }: StreamToggleProps) { return (

{isStreaming ? 'Streaming enabled' : 'Streaming disabled'}

{isStreaming ? 'Responses will stream in real-time' : 'Responses will arrive all at once'}

); }