Skip to content

Commit 9d4b163

Browse files
committed
fix indent
1 parent a7a2522 commit 9d4b163

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cognitive-services/LUIS/sdk-python-quickstart-authoring-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The primary object in a LUIS app's model is the intent. The intent aligns's with
9999

100100
Use the [model.add_intent](https://docs.microsoft.com/en-us/python/api/azure-cognitiveservices-language-luis/azure.cognitiveservices.language.luis.authoring.operations.modeloperations?view=azure-python#add-intent-app-id--version-id--name-none--custom-headers-none--raw-false----operation-config-) method with the name of the unique intent then pass the app ID, version ID, and new intent name.
101101

102-
[!code-python[Create LUIS client app](~/cognitive-services-quickstart-code/python/LUIS/application_quickstart.py?name=addIntents)]
102+
[!code-python[Create LUIS client app](~/cognitive-services-quickstart-code/python/LUIS/application_quickstart.py?name=addIntents)]
103103

104104
## Create entities for the app
105105

@@ -111,7 +111,7 @@ It is important to know that entities are not marked with an intent. They can an
111111

112112
Creation methods for entities are part of the [ModelOperations](https://docs.microsoft.com/en-us/python/api/azure-cognitiveservices-language-luis/azure.cognitiveservices.language.luis.authoring.operations.modeloperations?view=azure-python) class. Each entity type has its own data transformation object (DTO) model.
113113

114-
[!code-python[Create LUIS client app](~/cognitive-services-quickstart-code/python/LUIS/application_quickstart.py?name=addEntities)]
114+
[!code-python[Create LUIS client app](~/cognitive-services-quickstart-code/python/LUIS/application_quickstart.py?name=addEntities)]
115115

116116
## Add example utterance to intent
117117

0 commit comments

Comments
 (0)