import { BlockButton } from '@/components/ui/button'; import { cn } from '@/lib/utils'; import { PencilLine, X } from 'lucide-react'; import { PropsWithChildren } from 'react'; import { ToolPopover } from './tool-popover'; import { useDeleteAgentNodeTools } from './tool-popover/use-update-tools'; import { useGetAgentToolNames } from './use-get-tools'; export function ToolCard({ children, className, ...props }: PropsWithChildren & React.HTMLAttributes) { return (
  • {children}
  • ); } export function AgentTools() { const { toolNames } = useGetAgentToolNames(); const { deleteNodeTool } = useDeleteAgentNodeTools(); return (
    Tools Add Tool
    ); }