连接参数#
- class langchain_community.vectorstores.baiduvectordb.ConnectionParams(endpoint: str, api_key: str, account: str = 'root', connection_timeout_in_mills: int = 50000)[source]#
百度向量数据库连接参数。
详情请参阅以下文档: https://cloud.baidu.com/doc/VDB/s/6lrsob0wy
- Attribute:
- endpoint (str)The access address of the vector database server
客户端需要连接到的。
- api_key (str): API key for client to access the vector database server,
用于身份验证。
account (str) : 客户端访问向量数据库服务器的账户。 connection_timeout_in_mills (int) : 请求超时时间。
方法
__init__
(endpoint, api_key[, account, ...])- Parameters:
endpoint (str)
api_key (str)
account (str)
connection_timeout_in_mills (int)
使用 ConnectionParams 的示例