A mini code viewer card that shows a structured JSON response with a filename header, copy button, and preformatted preview body.
import { Ai43 } from "@/components/ui/ai43"; export default function Default() { return ( <Ai43 filename="response.json" content={`{ "answer": "Use Redis INCR", "sources": 3, "latency_ms": 420 }`} /> ); }