Skip to content

Commit e5d509d

Browse files
authored
Update more product names (Agent Runtime, Knowledge Engine, Agent Retrieval) (#1701)
* Rename RAG Engine to Knowledge Engine across docs * Fix remaining Agent Engine / Reasoning Engine product names * Rename Vector Search 2.0 to Agent Retrieval in grounding docs
1 parent f4b6042 commit e5d509d

9 files changed

Lines changed: 29 additions & 23 deletions

File tree

docs/deploy/agent-runtime/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ ADK agent code to Google Cloud
99
[Agent Runtime](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview).
1010
You should follow this deployment path if you have an existing Google Cloud
1111
project and if you want to carefully manage deploying an ADK agent to Agent
12-
Engine runtime environment. These instructions use Cloud Console, the gcloud
12+
Runtime environment. These instructions use Cloud Console, the gcloud
1313
command line interface, and the ADK command line interface (ADK CLI). This path
1414
is recommended for users who are already familiar with configuring Google Cloud
1515
projects, and users preparing for production deployments.
1616

1717
These instructions describe how to deploy an ADK project to Google Cloud Agent
18-
Engine runtime environment, which includes the following stages:
18+
Runtime environment, which includes the following stages:
1919

2020
* [Setup Google Cloud project](#setup-cloud-project)
2121
* [Prepare agent project folder](#define-your-agent)

docs/deploy/agent-runtime/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ async for event in remote_app.async_stream_query(
289289
290290
If you have performed deployments as tests, it is a good practice to clean up
291291
your cloud resources after you have finished. You can delete the deployed Agent
292-
Engine instance to avoid any unexpected charges on your Google Cloud account.
292+
Runtime instance to avoid any unexpected charges on your Google Cloud account.
293293
294294
```python
295295
remote_app.delete(force=True)

docs/grounding/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ADK supports multiple grounding approaches:
66

77
- **Google Search Grounding**: Connect agents to real-time web information for queries requiring current data like news, weather, or facts that may have changed since the model's training.
88
- **Grounding with Search**: Connect agents to your organization's private documents and enterprise data for queries requiring proprietary information.
9-
- **Agentic RAG**: Build agents that reason about how to search, constructing queries and filters dynamically using Vector Search 2.0, RAG Engine, or other retrieval systems.
9+
- **Agentic RAG**: Build agents that reason about how to search, constructing queries and filters dynamically using Agent Retrieval, Knowledge Engine, or other retrieval systems.
1010

1111
<div class="grid cards" markdown>
1212

@@ -54,7 +54,7 @@ ADK supports multiple grounding approaches:
5454

5555
---
5656

57-
A document Q&A agent powered by RAG Engine. Upload documents and ask questions to receive accurate answers with citations formatted as URLs pointing to source materials.
57+
A document Q&A agent powered by Knowledge Engine. Upload documents and ask questions to receive accurate answers with citations formatted as URLs pointing to source materials.
5858

5959
- [RAG Agent](https://github.com/google/adk-samples/tree/main/python/agents/RAG)
6060

docs/integrations/code-exec-agent-runtime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ catalog_tags: ["code", "google"]
1313

1414
The Agent Runtime Code Execution ADK Tool provides a low-latency, highly
1515
efficient method for running AI-generated code using the
16-
[Google Cloud Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview)
16+
[Google Cloud Agent Runtime](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview)
1717
service. This tool is designed for fast execution, tailored for agentic workflows,
1818
and uses sandboxed environments for improved security. The Code Execution tool
1919
allows code and data to persist over multiple requests, enabling complex,
@@ -28,7 +28,7 @@ This code execution tool is part of the Agent Runtime suite, however you do not
2828
have to deploy your agent to Agent Runtime to use it. You can run your agent
2929
locally or with other services and use this tool. For more information about the
3030
Code Execution feature in Agent Runtime, see the
31-
[Agent Engine Code Execution](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/code-execution/overview)
31+
[Agent Runtime Code Execution](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/code-execution/overview)
3232
documentation.
3333

3434

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
---
2-
catalog_title: RAG Engine
3-
catalog_description: Perform private data retrieval using RAG Engine
2+
catalog_title: Knowledge Engine
3+
catalog_description: Perform private data retrieval using Knowledge Engine
44
catalog_icon: /integrations/assets/agent-platform.svg
55
catalog_tags: ["data","google"]
66
---
77

8-
# RAG Engine tool for ADK
8+
# Knowledge Engine tool for ADK
99

1010
<div class="language-support-tag">
1111
<span class="lst-supported">Supported in ADK</span><span class="lst-python">Python v0.1.0</span><span class="lst-java">Java v0.2.0</span>
1212
</div>
1313

14-
The `vertex_ai_rag_retrieval` tool allows the agent to perform private data retrieval using RAG Engine.
14+
The `vertex_ai_rag_retrieval` tool allows the agent to perform private data
15+
retrieval using Knowledge Engine.
1516

16-
When you use grounding with RAG Engine, you need to prepare a RAG corpus beforehand.
17-
Please refer to the [RAG ADK agent sample](https://github.com/google/adk-samples/blob/main/python/agents/RAG/rag/shared_libraries/prepare_corpus_and_data.py) or [RAG Engine page](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-quickstart) for setting it up.
17+
When you use grounding with Knowledge Engine, you need to prepare a RAG corpus
18+
beforehand. Please refer to the [RAG ADK agent
19+
sample](https://github.com/google/adk-samples/blob/main/python/agents/RAG/rag/shared_libraries/prepare_corpus_and_data.py)
20+
or [Knowledge Engine
21+
page](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-quickstart)
22+
for setting it up.
1823

1924
!!! warning "Warning: Single tool per agent limitation"
2025

docs/sessions/memory.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ The Python ADK ships three `MemoryService` implementations. Use the table below
2828

2929
| **Feature** | **InMemoryMemoryService** | **VertexAiMemoryBankService** | **VertexAiRagMemoryService** |
3030
| :--- | :--- | :--- | :--- |
31-
| **Persistence** | None (data is lost on restart) | Yes (Managed by Agent Platform) | Yes (stored in RAG Engine) |
31+
| **Persistence** | None (data is lost on restart) | Yes (Managed by Agent Platform) | Yes (stored in Knowledge Engine) |
3232
| **Primary Use Case** | Prototyping, local development, and simple testing. | Building meaningful, evolving memories from user conversations. | Vector-search retrieval over the full conversation corpus, or alongside other RAG-indexed content. |
33-
| **Memory Extraction** | Stores full conversation | Extracts [meaningful information](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/memory-bank/generate-memories) from conversations and consolidates it with existing memories (powered by LLM) | Stores full conversation, indexed by [RAG Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-overview). |
34-
| **Search Capability** | Basic keyword matching. | Advanced semantic search. | Vector similarity search over RAG Engine. |
35-
| **Setup Complexity** | None. It's the default. | Low. Requires an [Agent Runtime](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/memory-bank/overview) instance on Agent Platform. | Medium. Requires [RAG Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/manage-your-rag-corpus). |
36-
| **Dependencies** | None. | Google Cloud Project, Agent Platform API | Google Cloud Project, RAG Engine, the Agent Platform SDK (optional install). |
33+
| **Memory Extraction** | Stores full conversation | Extracts [meaningful information](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/memory-bank/generate-memories) from conversations and consolidates it with existing memories (powered by LLM) | Stores full conversation, indexed by [Knowledge Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-overview). |
34+
| **Search Capability** | Basic keyword matching. | Advanced semantic search. | Vector similarity search over Knowledge Engine. |
35+
| **Setup Complexity** | None. It's the default. | Low. Requires an [Agent Runtime](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/memory-bank/overview) instance on Agent Platform. | Medium. Requires [Knowledge Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/manage-your-rag-corpus). |
36+
| **Dependencies** | None. | Google Cloud Project, Agent Platform API | Google Cloud Project, Knowledge Engine, the Agent Platform SDK (optional install). |
3737
| **When to use it** | When you want to search across multiple sessions’ chat histories for prototyping. | When you want your agent to remember and learn from past interactions. | When you already have RAG infrastructure or want to retrieve over raw conversation transcripts. |
3838

3939
`VertexAiRagMemoryService` is only exported from `google.adk.memory` when the Agent Platform SDK is installed. Memory Bank and RAG-backed memory are documented in [Memory Bank](#memory-bank) and [RAG Memory](#rag-memory) below.
@@ -397,7 +397,7 @@ Or, you can configure your agent to use the Memory Bank by manually instantiatin
397397

398398
## RAG Memory
399399

400-
The `VertexAiRagMemoryService` stores conversations in [RAG Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-overview) and retrieves them by vector similarity. Use it when you already have RAG infrastructure or want raw transcript retrieval rather than the LLM-extracted memories produced by Memory Bank. Requires the Agent Platform SDK.
400+
The `VertexAiRagMemoryService` stores conversations in [Knowledge Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/rag-overview) and retrieves them by vector similarity. Use it when you already have RAG infrastructure or want raw transcript retrieval rather than the LLM-extracted memories produced by Memory Bank. Requires the Agent Platform SDK.
401401

402402
=== "Python"
403403

docs/sessions/session/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ the storage backend that best suits your needs:
210210
* A Google Cloud project (`pip install vertexai`)
211211
* A Google Cloud storage bucket that can be configured by this
212212
[step](https://cloud.google.com/vertex-ai/docs/pipelines/configure-project#storage).
213-
* A Reasoning Engine resource name/ID that can setup following this
213+
* An Agent Runtime resource name/ID that can setup following this
214214
[tutorial](/deploy/agent-runtime/).
215215
* If you do not have a Google Cloud project and you want to try the VertexAiSessionService, see [Agent Platform Express Mode](/integrations/express-mode/).
216216
* **Best for:** Scalable production applications deployed on Google Cloud,

mkdocs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,9 @@ plugins:
199199
'tools/third-party/qdrant.md': 'integrations/qdrant.md'
200200
'tools/google-cloud/spanner.md': 'integrations/spanner.md'
201201
'tools/third-party/stripe.md': 'integrations/stripe.md'
202-
'tools/google-cloud/vertex-ai-rag-engine.md': 'integrations/rag-engine.md'
203-
'integrations/vertex-ai-rag-engine.md': 'integrations/rag-engine.md'
202+
'tools/google-cloud/vertex-ai-rag-engine.md': 'integrations/knowledge-engine.md'
203+
'integrations/vertex-ai-rag-engine.md': 'integrations/knowledge-engine.md'
204+
'integrations/rag-engine.md': 'integrations/knowledge-engine.md'
204205
'tools/google-cloud/vertex-ai-search.md': 'integrations/agent-search.md'
205206
'integrations/vertex-ai-search.md': 'integrations/agent-search.md'
206207
'grounding/vertex_ai_search_grounding.md': 'grounding/grounding_with_search.md'

tools/feature-matrix/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following matrix shows which ADK features are currently supported in each la
2222
| | **Built-in: Google Search** | [Supported](https://adk.dev/tools/built-in-tools/#google-search) | [Supported](https://adk.dev/tools/built-in-tools/#google-search) |
2323
| | **Built-in: Code Execution** | [Supported](https://adk.dev/tools/built-in-tools/#code-execution) | [Supported](https://adk.dev/tools/built-in-tools/#code-execution) |
2424
| | **Built-in: GKE Code Executor** | [Supported](https://adk.dev/tools/built-in-tools/#gke-code-executor) | Not Supported |
25-
| | **Built-in: RAG Engine** | [Supported](https://adk.dev/tools/built-in-tools/#rag-engine) | Not Supported |
25+
| | **Built-in: Knowledge Engine** | [Supported](https://adk.dev/integrations/knowledge-engine/) | Not Supported |
2626
| | **Built-in: Agent Search** | [Supported](https://adk.dev/tools/built-in-tools/#agent-search) | Not Supported |
2727
| | **Built-in: BigQuery, Spanner, Bigtable** | [Supported](https://adk.dev/tools/built-in-tools/#bigquery) | Not Supported |
2828
| | **Google Cloud Tools (API Hub, etc.)** | [Supported](https://adk.dev/tools/google-cloud-tools/#apigee-api-hub-tools) | Not Supported |

0 commit comments

Comments
 (0)