> ## Documentation Index > Fetch the complete documentation index at: https://docs.trychroma.com/llms.txt > Use this file to discover all available pages before exploring further. # Getting Started > Chroma is an open-source search engine for AI. It comes with everything you need to get started built-in, and runs on your machine. export const YouTube = ({src, title, allow, allowFullScreen = true, referrerPolicy}) => { const [isVisible, setIsVisible] = useState(false); const wrapperRef = useRef(null); useEffect(() => { const wrapper = wrapperRef.current; if (!wrapper) return; const observer = new IntersectionObserver(([entry]) => { if (entry.isIntersecting) { setIsVisible(true); observer.disconnect(); } }, { threshold: 0 }); observer.observe(wrapper); return () => observer.disconnect(); }, []); return
{isVisible &&