chore(ui): note Google's Agent Platform rename in vector store setup

Google Cloud has renamed Vertex AI RAG Engine to "RAG Engine" and
Vertex AI Search to "Agent Search" in its console. Users following our
setup instructions hit a naming mismatch when they cross-reference the
GCP console. Keep "Vertex AI" as the primary term (the generic new
names would make our provider UI ambiguous) and surface the new names
as secondary asides only where users leave the UI for the console.

Resolves LIT-3081
This commit is contained in:
Ryan Crabbe 2026-05-16 12:13:58 -07:00
parent 62dca9e977
commit 2cae26913f
No known key found for this signature in database

View file

@ -186,6 +186,10 @@ const VectorStoreForm: React.FC<VectorStoreFormProps> = ({
description={
<div>
<p>To use Vertex AI RAG Engine:</p>
<p style={{ marginTop: "4px", fontStyle: "italic" }}>
Note: Google Cloud has renamed this to &quot;RAG Engine&quot; in its console — the steps below still
apply.
</p>
<ol style={{ marginLeft: "16px", marginTop: "8px" }}>
<li>
Set up your Vertex AI RAG Engine corpus following the guide:{" "}
@ -198,7 +202,9 @@ const VectorStoreForm: React.FC<VectorStoreFormProps> = ({
</a>
</li>
<li>Create a corpus in your Google Cloud project</li>
<li>Note the corpus ID from the Vertex AI console</li>
<li>
Note the corpus ID from the Vertex AI console (now labeled &quot;RAG Engine&quot; in Google Cloud)
</li>
<li>Enter the corpus ID in the Vector Store ID field below</li>
</ol>
</div>
@ -216,6 +222,10 @@ const VectorStoreForm: React.FC<VectorStoreFormProps> = ({
description={
<div>
<p>To use Vertex AI Search (Discovery Engine):</p>
<p style={{ marginTop: "4px", fontStyle: "italic" }}>
Note: Google Cloud has renamed this to &quot;Agent Search&quot; in its console — the steps below still
apply.
</p>
<ol style={{ marginLeft: "16px", marginTop: "8px" }}>
<li>
Enable the Discovery Engine API on your Google Cloud project and create a data store following the
@ -230,7 +240,10 @@ const VectorStoreForm: React.FC<VectorStoreFormProps> = ({
</a>
</li>
<li>Pick a supported location: global, us, or eu</li>
<li>Copy the data store ID from the Vertex AI Search console</li>
<li>
Copy the data store ID from the Vertex AI Search console (now labeled &quot;Agent Search&quot; in
Google Cloud)
</li>
<li>Enter the data store ID in the Vector Store ID field below</li>
</ol>
</div>
@ -256,9 +269,9 @@ const VectorStoreForm: React.FC<VectorStoreFormProps> = ({
<TextInput
placeholder={
selectedProvider === "vertex_rag_engine"
? "6917529027641081856 (Get corpus ID from Vertex AI console)"
? '6917529027641081856 (corpus ID from Vertex AI / "RAG Engine" console)'
: selectedProvider === "vertex_ai/search_api"
? "my-datastore_1234567890 (Get data store ID from Vertex AI Search console)"
? 'my-datastore_1234567890 (data store ID from Vertex AI / "Agent Search" console)'
: "Enter vector store ID from your provider"
}
/>