Azure 认知搜索文档名称搜索

问题描述 投票:0回答:2

我正在使用 Azure 认知搜索,想知道是否有办法让文档名称也可搜索。我在 Azure 文档中找不到与文档名称关联的特定值。

有人遇到过这个问题吗?这是我目前拥有的:

{
  "name": "title",
  "type": "Edm.String",
  "searchable": "true",
  ...
}

“标题”的值正确吗?我还尝试了 ChatGPT 建议的“documentName”,但我很确定这是错误的,因为我无法使用文档名称进行搜索,只能使用内容进行搜索。

azure azure-cognitive-services azure-cognitive-search
2个回答
0
投票

索引看起来正确。我建议用于检索文档的代码是这里的问题。确保您不仅仅局限于向量索引


0
投票

解决方案是确保

"searchable": "true"
以及 `"name": "metadata_storage_name":

{
  "name": "metadata_storage_name",
  "type": "Edm.String",
  "searchable": "true",
  ...
}
© www.soinside.com 2019 - 2024. All rights reserved.