langchain_community.vectorstores.baiduvectordb
.ConnectionParams¶
- class langchain_community.vectorstores.baiduvectordb.ConnectionParams(endpoint: str, api_key: str, account: str = 'root', connection_timeout_in_mills: int = 50000)[source]¶
百度VectorDB连接参数。
有关详细信息,请参阅以下文档:https://cloud.baidu.com/doc/VDB/s/6lrsob0wy
- 属性
- endpoint (str)客户端需要连接到向量数据库服务器的访问地址
。
- api_key (str): 客户端访问向量数据库服务器的API密钥,
用于认证。
account (str) : 客户端访问向量数据库服务器的账号。 connection_timeout_in_mills (int) : 请求超时。
方法
__init__
(endpoint, api_key[, account, ...])- 参数
endpoint (str) –
api_key (str) –
account (str) –
connection_timeout_in_mills (int) –