VikingDBConfig#
- class langchain_community.vectorstores.vikingdb.VikingDBConfig(host='host', region='region', ak='ak', sk='sk', scheme='http')[source]#
vikingdb connection config
See the following documentation for details: https://www.volcengine.com/docs/6459/1167770
- Attribute:
- host(str):The access address of the vector database server
that the client needs to connect to.
region(str):”cn-shanghai” or “cn-beijing” ak(str):Access Key ID, security credentials for accessing
Volcano Engine services.
- sk(str):Secret Access Key, security credentials for accessing
Volcano Engine services.
scheme(str):http or https, defaulting to http.
Methods
__init__
([host, region, ak, sk, scheme])
Examples using VikingDBConfig