mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-25 01:02:15 +00:00
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:
parent
62dca9e977
commit
2cae26913f
1 changed files with 17 additions and 4 deletions
|
|
@ -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 "RAG Engine" 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 "RAG Engine" 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 "Agent Search" 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 "Agent Search" 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"
|
||||
}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue