在没有 LUISGEN 的情况下获取 LUIS 意图和实体
Get LUIS Intent and Entities without LUISGEN
- 目前我正在使用 LUISGen 帮助我的机器人在 C# 中轻松获取 Intent 和 Entities。
但是我们正在构建一个机器人自动化,并且不想使用 LUISGen,因为我们不能要求用户使用 LUISGEN 来生成 C# class。
那么,我调用 LUIS 获取 Intent 和 Entities 的 best/latest 方法是什么?
是 https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c2f 处的 API 方法吗?
但我似乎无法找到任何文档来获取 Intent 和 Entities with User Utterances。
谢谢。
可以参考this documentation to get intents using endpoint REST API. Also, depending on what exactly you want to query for, you can make use of the LUIS API.
路易斯 get entity
路易斯 get intent
希望对您有所帮助。
- 目前我正在使用 LUISGen 帮助我的机器人在 C# 中轻松获取 Intent 和 Entities。
但是我们正在构建一个机器人自动化,并且不想使用 LUISGen,因为我们不能要求用户使用 LUISGEN 来生成 C# class。
那么,我调用 LUIS 获取 Intent 和 Entities 的 best/latest 方法是什么?
是 https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c2f 处的 API 方法吗?
但我似乎无法找到任何文档来获取 Intent 和 Entities with User Utterances。
谢谢。
可以参考this documentation to get intents using endpoint REST API. Also, depending on what exactly you want to query for, you can make use of the LUIS API.
路易斯 get entity
路易斯 get intent
希望对您有所帮助。