Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions platform/src/components/aws/vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,19 @@ interface VectorRef {
}

/**
* The `Vector` component has been deprecated. It should not be used for new projects.
*
* :::caution
* This component has been deprecated.
* :::
*
* The `Vector` component lets you store and retrieve vector data in your app.
*
* - It uses a vector database powered by [RDS Postgres Serverless v2](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html).
* - Provides a [SDK](/docs/reference/sdk/) to query, put, and remove the vector data.
*
* @deprecated Use a dedicated vector database provider instead.
*
* @example
*
* #### Create the database
Expand Down
2 changes: 1 addition & 1 deletion www/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ const sidebar = [
"docs/component/aws/remix",
"docs/component/aws/nextjs",
"docs/component/aws/queue",
"docs/component/aws/vector",
"docs/component/aws/aurora",
"docs/component/aws/router",
"docs/component/aws/analog",
Expand Down Expand Up @@ -202,6 +201,7 @@ const sidebar = [
{ label: "Service.v1", slug: "docs/component/aws/service-v1" },
{ label: "Cluster.v1", slug: "docs/component/aws/cluster-v1" },
{ label: "Postgres.v1", slug: "docs/component/aws/postgres-v1" },
{ label: "Vector", slug: "docs/component/aws/vector" },
],
},
],
Expand Down