Skip to main content

Pinecone

Bundles 包含支援特定第三方整合的自訂Components,與 AgentBuilder 搭配使用。

此頁面描述 Pinecone bundle 中可用的Components。

Pinecone 向量儲存

Pinecone Components使用 PineconeVectorStore 實例讀取和寫入 Pinecone 向量儲存。

關於向量儲存實例

Because AgentBuilder is based on LangChain, vector store components use an instance of LangChain vector store to drive the underlying read and write functions. These instances are provider-specific and configured according to the component's parameters, such as the connection string, index name, and schema.

In component code, this is often instantiated as vector_store, but some vector store components use a different name, such as the provider name.

Some LangChain classes don't expose all possible options as component parameters. Depending on the provider, these options might use default values or allow modification through environment variables, if they are supported in AgentBuilder. For information about specific options, see the LangChain API reference and vector store provider's documentation.

如果您使用向量儲存Components查詢您的向量資料庫,它會產生搜尋結果,您可以將其作為 Data 物件清單或表格 DataFrame 傳遞給FLOW中的下游Components。 如果支援兩種類型,您可以在視覺編輯器中向量儲存Components的輸出連接埠附近設定格式。

tip

如需在 Flow中使用向量資料庫的教學,請參閱建立向量 RAG 聊天機器人

Pinecone 向量儲存參數

您可以檢查向量儲存Components的參數,以了解它接受的輸入、支援的功能以及如何配置它。

某些參數在視覺編輯器中預設為隱藏。 您可以透過 Components的標頭選單 中的 Controls 修改所有參數。

某些參數是條件性的,只有在您設定其他參數或為其他參數選取特定選項後才可用。 條件參數在您設定所需的依賴項之前,可能不會在 Controls 窗格中顯示。

如需接受值和功能的資訊,請參閱 Pinecone 文件 或檢查Components程式碼

NameTypeDescription
index_nameString輸入參數。Pinecone 索引的名稱。
namespaceString輸入參數。索引的命名空間。
distance_strategyString輸入參數。計算向量之間距離的策略。
pinecone_api_keySecretString輸入參數。Pinecone 的 API 金鑰。
text_keyString輸入參數。記錄中用作文字的金鑰。
search_queryString輸入參數。相似性搜尋的查詢。
ingest_dataData輸入參數。要擷取到向量儲存的資料。
embeddingEmbeddings輸入參數。要使用的嵌入函數。
number_of_resultsInteger輸入參數。搜尋中要返回的結果數量。
Search