Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update introduction and links #1242

Merged
merged 1 commit into from
Jan 3, 2024
Merged
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
7 changes: 3 additions & 4 deletions bootcamp/RAG/zilliz_pipeline_rag.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
"source": [
"# Build RAG using Zilliz Cloud Pipelines\n",
"\n",
"[Zilliz Cloud Pipelines](https://docs.zilliz.com/docs/pipelines) is a fully-managed, scalable service for unstructured data indexing and retrieval. With intuitive API of ingestion and search pipelines, developers can easily build AI-powered search and RAG applications. leaving the heavy-lifting parts to\n",
"this service, which can transform unstructured data into high quality vector embeddings and retrieve semantically similar content efficiently.\n",
"[Zilliz Cloud Pipelines](https://docs.zilliz.com/docs/pipelines) is AI-powered retrieval service. It simplifies the maintenance of information retrieval system by providing ingestion and search pipelines as easy-to-use API service. As an AI application developer, with quality optimization and devops taken care of, you can focus on building AI applications tailored to your specific use case.\n",
"\n",
"In this notebook, we show how to use [Zilliz Cloud Pipelines](https://zilliz.com/zilliz-cloud-pipelines) to build a simple yet scalable [RAG (Retrieval Augmented Generation)](https://research.ibm.com/blog/retrieval-augmented-generation-RAG) application. Retrieval is at the heart of RAG solution, which typically involves maintaining a knowledge base with document parsing and chunking, hosting an embedding model and using vector database. With Zilliz Cloud Pipelines, users no longer need to deal with such complex tech stack. Everything can be done with a simple API call.\n",
"In this notebook, we show how to use [Zilliz Cloud Pipelines](https://zilliz.com/zilliz-cloud-pipelines) to build a simple yet scalable [Retrieval Augmented Generation (RAG)](https://zilliz.com/use-cases/llm-retrieval-augmented-generation) application. Retrieval is at the heart of RAG solution, which typically involves maintaining a knowledge base with document parsing and chunking, hosting an embedding model and using vector database as retrieval engine. With Zilliz Cloud Pipelines, you don't need to deal with such a complex tech stack. Everything can be done with an API call.\n",
"\n",
"We first create the an Ingestion pipeline for document indexing and a Search pipeline for knowledge retrieval. Then we run Ingestion pipeline by API call to import documents to establish the knowledge base. Finally, we build an RAG application that runs Search pipeline to conduct Retrieval Augmented Generation.\n",
"\n",
Expand All @@ -32,7 +31,7 @@
"source": [
"## Setup\n",
"### Prerequisites\n",
"Please make sure you have a Serverless cluster in Zilliz Cloud. If not already, you can [sign up for free](https://cloud.zilliz.com/signup).\n",
"Please make sure you have a Serverless cluster in Zilliz Cloud. If not already, you can [sign up for free](https://cloud.zilliz.com/signup?utm_source=referral&utm_medium=partner&utm_campaign=2023-12-21_github-docs_zilliz-pipeline-rag_github).\n",
"\n",
"To learn how to create a Serverless cluster and get your CLOUD_REGION, CLUSTER_ID and API_KEY, please refer to this [page](https://docs.zilliz.com/docs/create-cluster) for more details."
]
Expand Down