You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Auto-Vectorization of Structured Data with Couchbase Capella AI Dataplane
4
+
title: Structured Vectorization with AI Data Plane (formerly AI Services)
5
5
short_title: Auto-Vectorization with Couchbase and Semantic Search using LangChain
6
6
description:
7
-
- Learn how to use Couchbase Capella's AI Dataplane auto-vectorization feature to automatically convert your structured data into vector embeddings.
7
+
- Learn how to use Couchbase Capella's AI Data Plane (formerly AI Services) auto-vectorization feature to automatically convert your structured data into vector embeddings.
8
8
- To learn about the auto-vectorization of unstuctured data read the following [tutorial](tutorial-couchbase-autovectorization-workdlows-with-unstructured-data-and-langchain).
9
9
- This tutorial demonstrates how to set up automated embedding generation workflows and perform semantic search using LangChain.
10
10
content_type: tutorial
@@ -57,7 +57,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a
57
57
> **⚠️ 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.
58
58
59
59
## Selecting the Model
60
-
1. To select the model, you first need to navigate to the "<B>AI Dataplane</B>" tab, then select "<B>Models</B>" and click on "<B>Deploy New Model</B>".
60
+
1. To select the model, you first need to navigate to the "<B>AI Data Plane (formerly AI Services)</B>" tab, then select "<B>Models</B>" and click on "<B>Deploy New Model</B>".
@@ -84,7 +84,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a
84
84
85
85
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).
86
86
87
-
1. For deploying the autovectorization, you need to go to the <B>`AI Dataplane`</B> tab, then click on <B>`Workflows`</B>, and then click on <B>`Create New Workflow`</B>.
87
+
1. For deploying the autovectorization, you need to go to the <B>`AI Data Plane (formerly AI Services)`</B> tab, then click on <B>`Workflows`</B>, and then click on <B>`Create New Workflow`</B>.
title: Auto-Vectorization on Unstructured Data Stored in S3 Buckets Using Couchbase Capella AI Dataplane
4
+
title: S3 Auto-Vectorization with AI Data Plane (formerly AI Services)
5
5
short_title: Auto-Vectorization on Unstructured Data Stored in S3 Buckets
6
6
description:
7
-
- Learn how to use Couchbase Capella's AI Dataplane Auto-Vectorization feature to automatically process unstructured data from S3 buckets.
7
+
- Learn how to use Couchbase Capella's AI Data Plane (formerly AI Services) Auto-Vectorization feature to automatically process unstructured data from S3 buckets.
8
8
- Configure workflows to chunk and vectorize documents (PDFs, images, etc.) and import them into Capella collections.
9
9
- Perform semantic vector search using LangChain and the generated embeddings.
10
10
content_type: tutorial
@@ -39,7 +39,7 @@ When running Couchbase using [Capella](https://cloud.couchbase.com/sign-in), the
39
39
# Deploying the Model
40
40
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).
41
41
## Selecting the Model
42
-
1. To select the model, you first need to navigate to the "<B>AI Dataplane</B>" tab, then select "<B>Models</B>" and click on "<B>Deploy New Model</B>".
42
+
1. To select the model, you first need to navigate to the "<B>AI Data Plane (formerly AI Services)</B>" tab, then select "<B>Models</B>" and click on "<B>Deploy New Model</B>".
@@ -64,7 +64,7 @@ Now, before we actually create embeddings for the documents, we need to deploy a
64
64
# Data upload from S3 bucket to Couchbase (with chunking and vectorization)
65
65
66
66
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:
67
-
1) Let's start by creating a new workflow. This can be done by clicking on the <B>`AI Dataplane`</B> tab, then click on <B>`Workflows`</B>, and then click on <B>`Create New Workflow`</B>.
67
+
1) Let's start by creating a new workflow. This can be done by clicking on the <B>`AI Data Plane (formerly AI Services)`</B> tab, then click on <B>`Workflows`</B>, and then click on <B>`Create New Workflow`</B>.
Copy file name to clipboardExpand all lines: tutorial/markdown/generated/vector-search-cookbook/capella-model-services-llamaindex-search_based-RAG_with_Capella_Model_Services_and_LlamaIndex.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ This notebook demonstrates how to build a RAG system using:
34
34
- The [BBC News dataset](https://huggingface.co/datasets/RealTimeData/bbc_news_alltime) containing news articles
35
35
- Couchbase Capella as the vector store
36
36
- LlamaIndex framework for the RAG pipeline
37
-
- Capella AI Dataplane for embeddings and text generation
37
+
- Capella AI Data Plane (formerly AI Services) for embeddings and text generation
38
38
39
39
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.
40
40
@@ -437,9 +437,9 @@ try:
437
437
438
438
# Configure LlamaIndex to use this LLM
439
439
Settings.llm = llm
440
-
logging.info("Successfully created the LLM in Capella AI Dataplane")
440
+
logging.info("Successfully created the LLM in Capella AI Data Plane (formerly AI Services)")
441
441
exceptExceptionas e:
442
-
raiseValueError(f"Error creating LLM in Capella AI Dataplane: {str(e)}")
442
+
raiseValueError(f"Error creating LLM in Capella AI Data Plane (formerly AI Services): {str(e)}")
## Caching in Capella AI Data Plane (formerly AI Services)
496
496
497
-
To optimize performance and reduce costs, Capella AI Dataplane employs two caching mechanisms:
497
+
To optimize performance and reduce costs, Capella AI Data Plane (formerly AI Services) employs two caching mechanisms:
498
498
499
499
1. Semantic Cache
500
500
@@ -560,6 +560,6 @@ The key components of our RAG system include:
560
560
561
561
1.**Couchbase Capella** as the vector database for storing and retrieving document embeddings
562
562
2.**LlamaIndex** as the framework for connecting our data to the LLM
563
-
3.**Capella AI Dataplane** for generating embeddings and LLM responses
563
+
3.**Capella AI Data Plane (formerly AI Services)** for generating embeddings and LLM responses
564
564
565
565
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.
0 commit comments