Check that Optimization Guide On Device Model is downloading or force
download if not Might take a few minutes for this component to even
appear
Open dev tools and type `(await
LanguageModel.capabilities()).available`, should return "readily" when
all good
If not you can trigger the download by doing the follow: ```const
session = await LanguageModel.create({monitor(m)
{m.addEventListener("downloadprogress", e => { console.log(`Downloaded
\${e.loaded} of \${e.total} bytes.`); });}});```