apps/docs/content/guides/ai.mdx
Supabase provides an open source toolkit for developing AI applications using Postgres and pgvector. Use the Supabase client libraries to store, index, and query your vector embeddings at scale.
The toolkit includes:
You can use Supabase to build different types of search features for your app, including:
Check out all of the AI templates and examples in our GitHub repository.
<div className="grid md:grid-cols-12 gap-4 not-prose"> {aiExamples.map((x) => ( <div className="col-span-4" key={x.href}> <Link href={x.href} passHref> <GlassPanel icon={'/docs/img/icons/github-icon'} hasLightIcon={true} title={x.name}> {x.description} </GlassPanel> </Link> </div> ))} </div>