MongoDB
Bundles 包含支援特定第三方整合 的自訂Components,與 AgentBuilder 搭配使用。
此頁面描述 MongoDB bundle 中可用的Components。
MongoDB Atlas
MongoDB Atlas Components使用 MongoDBAtlasVectorSearch 實例讀取和寫入 MongoDB Atlas 向量儲存。
關於向量儲存實例
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的輸出連接埠附近設定格式。
MongoDB Atlas 參數
您可以檢查向量儲存Components的參數,以了解它接受的輸入、支援的功能以及如何配置它。
某些參數在視覺編輯器中預設為隱藏。 您可以透過 Components的標頭選單 中的 Controls 修改所有參數。
某些參數是條件性的,只有在您設定其他參數或為其他參數選取特定選項後才可用。 條件參數在您設定所需的依賴項之前,可能不會在 Controls 窗格中顯示。
如需接受值和功能的資訊,請參閱 MongoDB Atlas 文件 或檢查Components程式碼。
| Name | Type | Description |
|---|---|---|
| mongodb_atlas_cluster_uri | SecretString | 輸入參數。MongoDB Atlas 叢集的連線 URI。必要。 |
| enable_mtls | Boolean | 輸入參數。啟用相互 TLS 驗證。預設:false。 |
| mongodb_atlas_client_cert | SecretString | 輸入參數。mTLS 驗證的用戶端憑證與私鑰結合。如果啟用 mTLS 則必要。 |
| db_name | String | 輸入參數。要使用的資料庫名稱。必要。 |
| collection_name | String | 輸入參數。要使用的集合名稱。必要。 |
| index_name | String | 輸入參數。Atlas Search 索引的名稱,應為向量搜尋。必要。 |
| insert_mode | String | 輸入參數。如何將新文件插入集合。選項為 "append" 或 "overwrite"。預設:"append"。 |
| embedding | Embeddings | 輸入參數。要使用的嵌入模型。 |
| number_of_results | Integer | 輸入參數。相似性搜尋中要返回的結果數量。預設:4。 |
| index_field | String | 輸入參數。要索引的欄位。預設:"embedding"。 |
| filter_field | String | 輸入參數。要篩選索引的欄位。 |
| number_dimensions | Integer | 輸入參數。嵌入向量維度計數。預設:1536。 |
| similarity | String | 輸入參數。用來測量向量間相似性的方法。選項為 "cosine"、"euclidean" 或 "dotProduct"。預設:"cosine"。 |
| quantization | String | 輸入參數。量化透過將 32 位元浮點數轉換為較小的資料類型來降低記憶體成本。選項為 "scalar" 或 "binary"。 |