Skip to content

Commit

Permalink
docs: rename vector to pgvector (#23308)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnr committed Apr 27, 2024
1 parent b2bae13 commit c30d5f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/docs/content/guides/ai/vector-columns.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ Vectors in Supabase are enabled via [pgvector](https://github.com/pgvector/pgvec
<TabPanel id="sql" label="SQL">

```sql
-- Example: enable the "vector" extension.
-- Example: enable the pgvector extension.
create extension vector
with
schema extensions;

-- Example: disable the "vector" extension
-- Example: disable the pgvector extension
drop
extension if exists vector;
```
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/content/guides/database/extensions/pgvector.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ This is particularly useful if you're building on top of OpenAI's [GPT-3](https:

1. Go to the [Database](https://supabase.com/dashboard/project/_/database/tables) page in the Dashboard.
2. Click on **Extensions** in the sidebar.
3. Search for "vector" and enable the extension.
3. Search for "pgvector" and enable the extension.

</TabPanel>
<TabPanel id="sql" label="SQL">

```sql
-- Example: enable the "vector" extension.
-- Example: enable the pgvector extension.
create extension vector
with
schema extensions;

-- Example: disable the "vector" extension
-- Example: disable the pgvector extension
drop
extension if exists vector;
```
Expand Down

0 comments on commit c30d5f0

Please sign in to comment.