diff --git a/docs/docs/Components/components-vector-stores.md b/docs/docs/Components/components-vector-stores.md index 91ba291f3..8fa7ec449 100644 --- a/docs/docs/Components/components-vector-stores.md +++ b/docs/docs/Components/components-vector-stores.md @@ -323,6 +323,15 @@ For more information, see the [FAISS documentation](https://faiss.ai/index.html) This component implements a Vector Store using HCD. +To use the HCD vector store, add your deployment's collection name, username, password, and HCD Data API endpoint. +The endpoint must be formatted like `http[s]://**DOMAIN_NAME** or **IP_ADDRESS**[:port]`, for example, `http://192.0.2.250:8181`. + +Replace **DOMAIN_NAME** or **IP_ADDRESS** with the domain name or IP address of your HCD Data API connection. + +To use the HCD vector store for embeddings ingestion, connect it to an embeddings model and a file loader: + +![HCD vector store embeddings ingestion](/img/component-hcd-example-flow.png) + ### Inputs | Name | Display Name | Info | diff --git a/docs/static/img/component-hcd-example-flow.png b/docs/static/img/component-hcd-example-flow.png new file mode 100644 index 000000000..7789376c4 Binary files /dev/null and b/docs/static/img/component-hcd-example-flow.png differ