總覽
SemanticCachePopulate 政策是進階快取政策,旨在提升 AI 工作負載的效能,特別是涉及大型語言模型 (LLM) 的工作負載。
這項政策會使用 Vertex AI Text Embeddings API 生成文字的嵌入,並使用 Vector Search 根據語意相似度 (而非完全相符) 儲存 API 回應。
SemanticCachePopulate 政策可減少重複查詢的回應時間,並減少對 LLM 的呼叫量,進而降低成本。
這項政策會與語意快取查詢政策一併使用。
這項政策是可擴充政策,使用這項政策可能會產生費用或影響用量,具體情況取決於您的 Apigee 授權。如要瞭解政策類型和使用方式的影響,請參閱「政策類型」。
事前準備
使用 SemanticCachePopulate 政策前,請先完成下列工作:
- 建立 Vertex AI 專案。
- 建立 Vector Search 索引。
- 為索引建立 Vertex AI 端點。
- 建立 SemanticCachePopulate 政策。
如要進一步瞭解如何完成這些工作,請參閱「開始使用語意快取政策」。
角色和權限
如要取得套用及使用 SemanticCachePopulate 政策所需的權限,請要求管理員在您用來部署 Apigee Proxy 的服務帳戶中,授予您 AI Platform 使用者 (roles/aiplatform.user
) IAM 角色。如要進一步瞭解如何授予角色,請參閱「管理專案、資料夾和機構的存取權」。
啟用 API
Enable the Compute Engine, Vertex AI, and Cloud Storage APIs.
<SemanticCachePopulate>
元素
定義 SemanticCachePopulate 政策。
預設值 | 請參閱下方的「預設政策」分頁 |
必填與否 | 必填 |
類型 | 複雜物件 |
父項元素 | 不適用 |
子元素 |
<DisplayName> <IgnoreUnresolvedVariables> <SimilaritySearch> <TTLInSeconds> |
<SemanticCachePopulate>
元素使用下列語法:
語法
<SemanticCachePopulate>
元素使用下列語法:
<SemanticCachePopulate async="false" continueOnError="false"enabled="true" name="SCP-populate"> <DisplayName>SCP-populate</DisplayName> <IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables> <SimilaritySearch> <VertexAI> <URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL> </VertexAI> </SimilaritySearch> <TTLInSeconds>{EXPIRATION_TIME_IN_SECONDS}</TTLInSeconds> </SemanticCachePopulate>
預設政策
下列範例顯示在 Apigee UI 中,將 SemanticCachePopulate 政策新增至 API 代理時的預設設定:
<SemanticCachePopulate async="false" continueOnError="false"enabled="true" name="SCP-populate"> <DisplayName>SCP-populate</DisplayName> <IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables> <SimilaritySearch> <VertexAI> <URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL> </VertexAI> </SimilaritySearch> <TTLInSeconds>60</TTLInSeconds> </SemanticCachePopulate>
在 Apigee UI 中插入新的 SemanticCachePopulate 政策時,範本會包含所有可能作業的存根。請參閱下文,瞭解必要元素。
這個元素包含下列所有政策都適用的屬性:
屬性 | 預設 | 是否必要? | 說明 |
---|---|---|---|
name |
不適用 | 必要 |
政策的內部名稱。 您可以選擇使用 |
continueOnError |
false | 選用 | 將其設為 false ,即可在政策失敗時傳回錯誤。這是大多數政策的預期行為。將其設為 true ,即使政策失敗,流程執行作業仍會繼續進行。另請參閱:
|
enabled |
是 | 選用 | 設為 true 即可強制執行政策。設為 false 即可關閉政策。即使政策仍附加至流程,系統也不會強制執行這項政策。 |
async |
false | 已淘汰 | 此屬性已淘汰。 |
下表提供 <SemanticCachePopulate>
子元素的高階說明:
子元素 | 是否必要 | 說明 |
---|---|---|
<DisplayName> |
選用 | 政策名稱。 |
<IgnoreUnresolvedVariables> |
選用 | 決定屬性集無法解析時,是否停止處理。 |
<SimilaritySearch> |
必填 | 包含更新向量索引所需資訊的元素。
詳情請參閱「Upsert datapoints」。 資料點的到期時間為輸入時間後的 <TTLInSeconds>。 |
<TTLInSeconds> |
選用 | 快取回應的存留時間 (TTL),以秒為單位。
預設值為 |
範例
本節提供使用 <SemanticCachePopulate>
的範例。
<SemanticCachePopulate async="false" continueOnError="false"enabled="true" name="SCP-populate"> <DisplayName>SCP-populate</DisplayName> <IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables> <SimilaritySearch> <VertexAI> <URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL> </VertexAI> </SimilaritySearch> <TTLInSeconds>60</TTLInSeconds> </SemanticCachePopulate>
子元素參照
本節說明 <SemanticCachePopulate>
的子元素。
<DisplayName>
除了 name
屬性之外,您也可以在管理 UI 代理程式編輯器中使用其他更自然的名稱標記政策。
<DisplayName>
元素適用於所有政策。
預設值 | 不適用 |
是否必要? | (非必要) 如果省略 <DisplayName> ,系統會使用政策的 name 屬性值。 |
類型 | 字串 |
上層元素 | <PolicyElement> |
子元素 | 無 |
<DisplayName>
元素使用以下語法:
語法
<PolicyElement> <DisplayName>POLICY_DISPLAY_NAME</DisplayName> ... </PolicyElement>
範例
<PolicyElement> <DisplayName>My Validation Policy</DisplayName> </PolicyElement>
<DisplayName>
元素沒有屬性或子項元素。
<IgnoreUnresolvedVariables>
判斷變數未解析時是否停止處理。設為
true
,即可忽略未解析的變數並繼續處理。
提供 <DefaultValue>
時,不適用 IgnoreUnresolvedVariables
。
預設值 | 否 |
必填與否 | 選用 |
類型 | 布林值 |
父項元素 |
<SemanticCachePopulate>
|
子元素 | 無 |
<SimilaritySearch>
包含更新向量索引所需資訊的元素。
詳情請參閱「Upsert datapoints」。
資料點的有效期限為輸入時間起算的 <TTLInSeconds>
。
預設值 | 不適用 |
必填與否 | 必填 |
類型 | 字串 |
父項元素 |
<SemanticCachePopulate>
|
子元素 |
<VertexAI> |
<SimilaritySearch>
元素使用下列語法:
<SimilaritySearch> <VertexAI> <URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL> </VertexAI> </SimilaritySearch>
<VertexAI> (<SimilaritySearch>
的子項)
包含 Vertex AI 特定屬性的 <URL> 元素。
預設值 | 不適用 |
必填與否 | 必填 |
類型 | 字串 |
父項元素 |
<SimilaritySearch>
|
子元素 |
<URL> |
VertexAI
元素使用下列語法:
<VertexAI> <URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL> </VertexAI>
<URL> (<VertexAI>
的子項)
用於在向量索引中新增或更新資料點的網址。
預設值 | 不適用 |
必填與否 | 必填 |
類型 | 字串 |
父項元素 |
<VertexAI>
|
子元素 |
無 |
URL
元素使用下列語法:
<URL>https://{LOCATION}-aiplatform.googleapis.com/v1/projects/{PROJECT_ID}/locations/{LOCATION}/indexes/{INDEX_ID}:upsertDatapoints</URL>
<TTLInSeconds>
這個元素會指定快取回應的存留時間 (TTL),以秒為單位。預設值為 60。
詳情請參閱「 更新及重建有效索引」。
預設值 | 不適用 |
必填與否 | 選用 |
類型 | 字串 |
父項元素 |
<SemanticCachePopulate>
|
子元素 |
無 |
流程變數
您可以根據 HTTP 標頭或訊息內容,或流程中可用的內容,使用流程變數設定政策和流程的動態執行階段行為。如要進一步瞭解流程變數,請參閱流程變數參考資料。
政策可在執行期間設定這些唯讀變數。
變數名稱 | 說明 |
---|---|
response.content |
包含 API 回應的完整內容。 |
semanticcache.populate.policy_name.upsert_index_request |
包含傳送至 Vertex AI Vector Search API 的要求酬載,用於以新的嵌入和中繼資料更新向量索引。 |
semanticcache.populate.policy_name.upsert_index_response |
內含 Vertex AI Vector Search API 的回應,指出索引更新作業是否成功。 |
錯誤參考資料
本節說明 Apigee 針對 <SemanticCachePopulate>
政策傳回的錯誤代碼和錯誤訊息,以及設定的錯誤變數。如果您要開發用來處理錯誤的錯誤規則,這項資訊就非常重要。詳情請參閱「政策錯誤須知」和「處理錯誤」。
執行階段錯誤
政策執行時可能會發生這些錯誤。
錯誤碼 | HTTP 狀態 | 原因 |
---|---|---|
steps.semanticcachepopulate.VectorSearchUpsertServiceUnavailable
|
400 |
如果 Vector Search Upsert Datapoints API 無法使用,就會發生這個錯誤。 |
steps.semanticcache.populate.VectorSearchUpsertAPIFailed |
500 |
如果 Vector Search Upsert Datapoints API 服務失敗,就會發生這項錯誤。 |
steps.semanticcache.populate.AuthenticationFailure |
500 |
如果服務帳戶沒有必要權限,就會發生這項錯誤。 |
steps.semanticcache.populate.CalloutError |
500 |
Vertex AI 服務呼叫失敗。 |
steps.semanticcache.populate.InternalError |
500 |
如果 |
部署錯誤
部署含有這項政策的 Proxy 時,可能會發生這些錯誤。
錯誤名稱 | 原因 |
---|---|
The SimilaritySearch URL {url} is invalid. |
如果 <SimilaritySearch> 中的 <URL> 元素空白或無效,就會發生這個錯誤。 |
The scheme {http-scheme} of SimilaritySearch URL {url} must be one of http, https. |
如果 SimilaritySearch <URL> 元素的 http 配置無效,就會發生這種情況。 |
The TTLInSeconds element must be >= 0. |
如果值設為零或負數,API Proxy 部署作業就會失敗。 |
錯誤變數
當這項政策在執行階段觸發錯誤時,系統會設定這些變數。詳情請參閱「政策錯誤須知」。
錯誤回應範例
{ "fault": { "faultstring": "SemanticCacheLookup[SC-populate]: unable to resolve variable [variable_name]", "detail": { "errorcode": "steps.semanticcachepopulate.UnresolvedVariable" } } }
錯誤規則範例
<FaultRule name="SemanticCacheLookup Faults"> <Step> <Name>SCL-CustomSetVariableErrorResponse</Name> <Condition>(fault.name = "SetVariableFailed")</Condition> </Step> <Condition>(semanticcachelookup.failed = true)</Condition> </FaultRule>
結構定義
每個政策類型都由 XML 架構 (.xsd
) 定義。如需參考,請前往 GitHub 查看政策架構。