连接参数#
- class langchain_community.vectorstores.tencentvectordb.ConnectionParams(url: str, key: str, username: str = 'root', timeout: int = 10)[source]#
腾讯向量数据库连接参数。
详情请参阅以下文档: https://cloud.tencent.com/document/product/1709/95820
- Attribute:
- url (str)The access address of the vector database server
客户端需要连接到的。
- key (str): API key for client to access the vector database server,
用于身份验证。
username (str) : 客户端访问向量数据库服务器的账户。 timeout (int) : 请求超时时间。
方法
__init__
(url, key[, username, timeout])- Parameters:
url (str)
key (str)
username (str)
timeout (int)
使用 ConnectionParams 的示例