Skip to content

Instantly share code, notes, and snippets.

@Nithur-M
Created July 20, 2024 07:17
Show Gist options
  • Save Nithur-M/3516a6bb8310e6c983d37f79f4c168fd to your computer and use it in GitHub Desktop.
Save Nithur-M/3516a6bb8310e6c983d37f79f4c168fd to your computer and use it in GitHub Desktop.
Check if Gemini Nano is supported in user browser
useEffect(() => {
async function checkCanShow() {
const canCreate = await window.ai?.canCreateTextSession();
console.log(canCreate)
if (canCreate == "readily") {
setCanShow(true)
}
}
checkCanShow();
}, [])
if(!canShow) {
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment