diff --git a/platform/src/components/aws/vector.ts b/platform/src/components/aws/vector.ts index ecc1d384b0..f78174c5ad 100644 --- a/platform/src/components/aws/vector.ts +++ b/platform/src/components/aws/vector.ts @@ -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 diff --git a/www/astro.config.mjs b/www/astro.config.mjs index d07da81c8b..a782c02959 100644 --- a/www/astro.config.mjs +++ b/www/astro.config.mjs @@ -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", @@ -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" }, ], }, ],