From f089f3b01d282cb4d12f7bf7437fb2dd3fc4d33c Mon Sep 17 00:00:00 2001 From: Elliot Scribner Date: Tue, 30 Jun 2026 07:41:54 -0700 Subject: [PATCH 1/3] Rename tutorials --- .../autovec-structured-autovec_langchain.md | 10 +++++----- .../autovec_unstructured-autovec_unstructured.md | 10 +++++----- ...RAG_with_Capella_Model_Services_and_LlamaIndex.md | 12 ++++++------ 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md b/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md index 0367133..5fe42c9 100644 --- a/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md +++ b/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md @@ -1,10 +1,10 @@ --- # frontmatter path: "/tutorial-couchbase-capella-autovectorization-workflows-with-structured-data-and-langchain" -title: Auto-Vectorization of Strucutured Data with Couchbase Capella AI Services +title: Auto-Vectorization of Strucutured Data with Couchbase Capella AI Data Plane short_title: Auto-Vectorization with Couchbase and Semantic Search using LangChain description: - - Learn how to use Couchbase Capella's AI Services auto-vectorization feature to automatically convert your structured data into vector embeddings. + - Learn how to use Couchbase Capella's AI Data Plane auto-vectorization feature to automatically convert your structured data into vector embeddings. - To learn about the auto-vectorization of unstuctured data read the following [tutorial](tutorial-couchbase-autovectorization-workdlows-with-unstructured-data-and-langchain). - This tutorial demonstrates how to set up automated embedding generation workflows and perform semantic search using LangChain. content_type: tutorial @@ -57,7 +57,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a > **⚠️ IMPORTANT:** The model **must** be deployed in the **same region** as your database cluster for workflows to function properly. Failing to match regions will prevent the workflow from working and may require cluster redeployment. ## Selecting the Model -1. To select the model, you first need to navigate to the "AI Services" tab, then select "Models" and click on "Deploy New Model". +1. To select the model, you first need to navigate to the "AI Data Plane" tab, then select "Models" and click on "Deploy New Model". @@ -67,7 +67,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a ## Access Control to the Model -1. After deploying the model, go to the "Models" tab in the AI Services and click on "Setup Access". +1. After deploying the model, go to the "Models" tab in the AI Data Plane and click on "Setup Access". @@ -84,7 +84,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a Now, we are at the step that will help us create the embeddings/vectors. To proceed with the vectorization process, please follow the steps below. For more details, refer to the [data processing documentation](https://docs.couchbase.com/ai/build/vectorization-service/data-processing.html). -1. For deploying the autovectorization, you need to go to the `AI Services` tab, then click on `Workflows`, and then click on `Create New Workflow`. +1. For deploying the autovectorization, you need to go to the `AI Data Plane` tab, then click on `Workflows`, and then click on `Create New Workflow`. diff --git a/tutorial/markdown/generated/vector-search-cookbook/autovec_unstructured-autovec_unstructured.md b/tutorial/markdown/generated/vector-search-cookbook/autovec_unstructured-autovec_unstructured.md index 081a79f..85f6afe 100644 --- a/tutorial/markdown/generated/vector-search-cookbook/autovec_unstructured-autovec_unstructured.md +++ b/tutorial/markdown/generated/vector-search-cookbook/autovec_unstructured-autovec_unstructured.md @@ -1,10 +1,10 @@ --- # frontmatter path: "/tutorial-couchbase-autovectorization-workflows-with-unstructured-data-and-langchain" -title: Auto-Vectorization on Unstructured Data Stored in S3 Buckets Using Couchbase Capella AI Services +title: Auto-Vectorization on Unstructured Data Stored in S3 Buckets Using Couchbase Capella AI Data Plane short_title: Auto-Vectorization on Unstructured Data Stored in S3 Buckets description: - - Learn how to use Couchbase Capella's AI Services Auto-Vectorization feature to automatically process unstructured data from S3 buckets. + - Learn how to use Couchbase Capella's AI Data Plane Auto-Vectorization feature to automatically process unstructured data from S3 buckets. - Configure workflows to chunk and vectorize documents (PDFs, images, etc.) and import them into Capella collections. - Perform semantic vector search using LangChain and the generated embeddings. content_type: tutorial @@ -39,7 +39,7 @@ When running Couchbase using [Capella](https://cloud.couchbase.com/sign-in), the # Deploying the Model Now, before we actually create embeddings for the documents, we need to deploy a model that will create the embeddings for us. Make sure the model is deployed in the same region as that of database for workflows to work. To know more about model services click [here](https://docs.couchbase.com/ai/build/model-service/deploy-embed-model.html). ## Selecting the Model -1. To select the model, you first need to navigate to the "AI Services" tab, then select "Models" and click on "Deploy New Model". +1. To select the model, you first need to navigate to the "AI Data Plane" tab, then select "Models" and click on "Deploy New Model". @@ -49,7 +49,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a ## Access Control to the Model -1. After deploying the model, go to the "Models" tab in the AI Services and click on "Setup Access". +1. After deploying the model, go to the "Models" tab in the AI Data Plane and click on "Setup Access". @@ -64,7 +64,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a # Data upload from S3 bucket to Couchbase (with chunking and vectorization) In order to import unstructured data from the S3 bucket, you need to create a workflow that connects to your S3 bucket and chunks your unstructured data before importing it into the collections. To do so, please follow the steps mentioned below: -1) Let's start by creating a new workflow. This can be done by clicking on the `AI Services` tab, then click on `Workflows`, and then click on `Create New Workflow`. +1) Let's start by creating a new workflow. This can be done by clicking on the `AI Data Plane` tab, then click on `Workflows`, and then click on `Create New Workflow`. diff --git a/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md b/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md index 270f44d..fdab8f2 100644 --- a/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md +++ b/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md @@ -34,7 +34,7 @@ This notebook demonstrates how to build a RAG system using: - The [BBC News dataset](https://huggingface.co/datasets/RealTimeData/bbc_news_alltime) containing news articles - Couchbase Capella as the vector store - LlamaIndex framework for the RAG pipeline -- Capella AI Services for embeddings and text generation +- Capella AI Data Plane for embeddings and text generation Semantic search goes beyond simple keyword matching by understanding the context and meaning behind the words in a query, making it an essential tool for applications that require intelligent information retrieval. This tutorial will equip you with the knowledge to create a fully functional RAG system using Capella Model Services and LlamaIndex. @@ -437,9 +437,9 @@ try: # Configure LlamaIndex to use this LLM Settings.llm = llm - logging.info("Successfully created the LLM in Capella AI Services") + logging.info("Successfully created the LLM in Capella AI Data Plane") except Exception as e: - raise ValueError(f"Error creating LLM in Capella AI Services: {str(e)}") + raise ValueError(f"Error creating LLM in Capella AI Data Plane: {str(e)}") ``` # Creating the Vector Store Index @@ -492,9 +492,9 @@ except RecursionError as e: raise RuntimeError(f"Error performing semantic search: {e}") ``` -## Caching in Capella AI Services +## Caching in Capella AI Data Plane -To optimize performance and reduce costs, Capella AI services employ two caching mechanisms: +To optimize performance and reduce costs, Capella AI Data Plane employ two caching mechanisms: 1. Semantic Cache @@ -560,6 +560,6 @@ The key components of our RAG system include: 1. **Couchbase Capella** as the vector database for storing and retrieving document embeddings 2. **LlamaIndex** as the framework for connecting our data to the LLM -3. **Capella AI Services** for generating embeddings and LLM responses +3. **Capella AI Data Plane** for generating embeddings and LLM responses This approach allows us to enhance the capabilities of large language models by grounding their responses in specific, up-to-date information from our knowledge base. From fb20db7186c77483557a98077b493f3394919ef1 Mon Sep 17 00:00:00 2001 From: Elliot Scribner Date: Tue, 30 Jun 2026 07:49:12 -0700 Subject: [PATCH 2/3] Update tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- .../autovec-structured-autovec_langchain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md b/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md index 5fe42c9..1499bc5 100644 --- a/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md +++ b/tutorial/markdown/generated/vector-search-cookbook/autovec-structured-autovec_langchain.md @@ -1,7 +1,7 @@ --- # frontmatter path: "/tutorial-couchbase-capella-autovectorization-workflows-with-structured-data-and-langchain" -title: Auto-Vectorization of Strucutured Data with Couchbase Capella AI Data Plane +title: Auto-Vectorization of Structured Data with Couchbase Capella AI Data Plane short_title: Auto-Vectorization with Couchbase and Semantic Search using LangChain description: - Learn how to use Couchbase Capella's AI Data Plane auto-vectorization feature to automatically convert your structured data into vector embeddings. From e6d4d4ff069652bf3c4a21fdcbfd82d06ae78018 Mon Sep 17 00:00:00 2001 From: Elliot Scribner Date: Tue, 30 Jun 2026 07:49:33 -0700 Subject: [PATCH 3/3] Update tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- ...arch_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md b/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md index fdab8f2..8c15ffc 100644 --- a/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md +++ b/tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md @@ -494,7 +494,7 @@ except RecursionError as e: ## Caching in Capella AI Data Plane -To optimize performance and reduce costs, Capella AI Data Plane employ two caching mechanisms: +To optimize performance and reduce costs, Capella AI Data Plane employs two caching mechanisms: 1. Semantic Cache