Spaces:
Running
Running
File size: 404 Bytes
dd87944 | 1 2 3 4 5 6 7 8 9 10 11 12 | import React from "react";
import ChatPreviewBubble from "./ChatPreviewBubble";
import { hasToolPreview } from "../lib/resolveToolPreview";
/** @deprecated Utiliser ChatPreviewBubble — conservé pour compat. */
export function ToolInlinePreview({ event }) {
if (!hasToolPreview(event)) return null;
return <ChatPreviewBubble event={event} className="mt-2" />;
}
export default ToolInlinePreview;
|