0

在发布到 luis 示例端点https://dev.projectoxford.ai/docs/services/56d95961e597ed0f04b76e58/operations/56f8a55119845511c81de462时,我很难弄清楚如何格式化请求正文

有没有人可以分享一个具体的例子?

4

2 回答 2

1

尝试在您链接到的文档的 application/json Request Body 部分中单击“Schema”。它与使用 LUIS 模型得到的格式完全相同。

 {
  "items": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "ExampleText": {
        "type": "string"
      },
      "SelectedIntentName": {
        "type": "string"
      },
      "EntityLabels": {
        "items": {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "EntityType": {
              "type": "string"
            },
            "StartToken": {
              "type": "integer"
            },
            "EndToken": {
              "type": "integer"
            }
          }
        },
        "type": "object"
      }
    }
  },
  "type": "object"
}
于 2016-07-06T00:06:30.410 回答
0

我遇到了麻烦,似乎您也必须遵循架构的顺序。因此,如果您使用库来创建 json,则键的顺序可能不正确。超级 hacky,但我发现只需使用字符串方法创建 json 即可。

于 2016-07-27T16:26:34.057 回答