langchain Azure Cosmos DB NoSQL

wgxvkvu9  于 4个月前  发布在  其他
关注(0)|答案(2)|浏览(41)

URL

https://python.langchain.com/v0.2/docs/integrations/vectorstores/azure_cosmos_db_no_sql/

待办事项清单

  • 为这个问题添加了一个非常描述性的标题。
  • 如果适用,我包含了一个指向我参考的文档页面的链接。

当前文档的问题:

当前的代码无法正常工作,在插入文档时会出现以下错误
TypeError: AzureCosmosDBNoSqlVectorSearch._from_kwargs()缺少一个必需的关键字参数:'cosmos_database_properties'

关于内容的想法或请求:

  • 无响应*
watbbzwu

watbbzwu1#

我正在面临相同的问题。

zi8p0yeb

zi8p0yeb2#

看起来我们需要定义:
cosmos_database_properties = {"id": cosmos_database_name}
然后:
vector_search = AzureCosmosDBNoSqlVectorSearch.from_documents( documents=docs, embedding=openai_embeddings, cosmos_client=cosmos_client, database_name=cosmos_database_name, container_name=cosmos_container_name, vector_embedding_policy=vector_embedding_policy, indexing_policy=indexing_policy, cosmos_container_properties=cosmos_container_properties, cosmos_database_properties=cosmos_database_properties,)
问候,达米尔

相关问题