mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
47705a8968
* fix: rewrite relative URLs when syncing to GitHub discussion Relative URLs back to supabse.com won't work in GitHub discussions, so rewrite them back to absolute URLs starting with https://supabase.com * fix: replace all supabase urls with relative urls * chore: add linting for relative urls * chore: bump linter version * Prettier --------- Co-authored-by: Chris Chinchilla <chris.ward@supabase.io>
21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
---
|
|
id: 'ai-python-clients'
|
|
title: 'Choosing a Client'
|
|
description: 'Learn how to manage vectors using Python'
|
|
sidebar_label: 'Choosing a Client'
|
|
---
|
|
|
|
As described in [Structured & Unstructured Embeddings](/docs/guides/ai/structured-unstructured), AI workloads come in many forms.
|
|
|
|
For data science or ephemeral workloads, the [Supabase Vecs](https://supabase.github.io/vecs/) client gets you started quickly. All you need is a connection string and vecs handles setting up your database to store and query vectors with associated metadata.
|
|
|
|
<Admonition type="tip">
|
|
|
|
Click [**Connect**](/dashboard/project/_/?showConnect=true) at the top of any project page to get your connection string.
|
|
|
|
Copy the URI from the **Shared pooler** option.
|
|
|
|
</Admonition>
|
|
|
|
For production python applications with version controlled migrations, we recommend adding first class vector support to your toolchain by [registering the vector type with your ORM](https://github.com/pgvector/pgvector-python). pgvector provides bindings for the most commonly used SQL drivers/libraries including Django, SQLAlchemy, SQLModel, psycopg, asyncpg and Peewee.
|