Skip to content

Commit

Permalink
fix link LUIS documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
enzocano committed Mar 7, 2017
1 parent 1cf4877 commit 7441b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSharp/intelligence-LUIS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public async Task Search(IDialogContext context, IAwaitable<IMessageActivity> ac
}
````

Each intent handler method accepts the `IDialogContext`, the original incoming `IMessageActivity` message and the `LuisResult` including the matching Intents and Entities for the LUIS query. In the sample below, the [RootLuisDialog](Dialogs/RootLuisDialog.cs#L46) class retrieves a city value from the processed [pre-built entity](https://www.luis.ai/Help/#PreBuiltEntities).
Each intent handler method accepts the `IDialogContext`, the original incoming `IMessageActivity` message and the `LuisResult` including the matching Intents and Entities for the LUIS query. In the sample below, the [RootLuisDialog](Dialogs/RootLuisDialog.cs#L46) class retrieves a city value from the processed [pre-built entity](https://github.com/Microsoft/Cognitive-Documentation/blob/master/Content/en-us/LUIS/Pre-builtEntities.md).
````C#
EntityRecommendation cityEntityRecommendation;
Expand Down

0 comments on commit 7441b17

Please sign in to comment.