Skip to content

Commit 3d33117

Browse files
kpajdziklmazuel
authored andcommitted
Fix typos in LUIS readme file (#15)
1 parent b59bd73 commit 3d33117

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/language/luis/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The first step is to get your Programmatic Key. Go to the home page, [www.luis.a
1919

2020
![Get the programmatic key](images/programmatic-key.png)
2121

22-
Set the `LUIS_SUBSCRIPTION_KEY` environment variable to this programmtic key to continue.
22+
Set the `LUIS_SUBSCRIPTION_KEY` environment variable to this programmatic key to continue.
2323

2424
## Cognitive Services: LUIS Authoring Sample
2525

@@ -63,15 +63,15 @@ You'll need these two values to configure the LuisDialog through the LuisModel a
6363

6464
One of the key problems in human-computer interactions is the ability of the computer to understand what a person wants, and to find the pieces of information that are relevant to their intent. In the LUIS application, you will bundle together the intents and entities that are important to your task. Read more about [Planning an Application](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/plan-your-app) in the [LUIS Docs](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/).
6565

66-
Once your model is set, you can invoke the LUIS Runtime API to analize user input and obtain its intent and possible entities.
66+
Once your model is set, you can invoke the LUIS Runtime API to analyze user input and obtain its intent and possible entities.
6767

6868
From Python, use the [azure-cognitiveservices-language-luis](http://pypi.python.org/pypi/azure-cognitiveservices-language-luis) package.
6969

7070
````python
7171
from azure.cognitiveservices.language.luis.runtime import LUISRuntimeClient
7272
from msrest.authentication import CognitiveServicesCredentials
7373

74-
// Create client with SuscriptionKey and Azure region
74+
// Create client with SubscriptionKey and Azure region
7575
client = LUISRuntimeClient(
7676
'https://westus.api.cognitive.microsoft.com', # Change "westus" to your region if necessary
7777
CognitiveServicesCredentials("[LUIS_SUBSCRIPTION_KEY]"), # Put your LUIS Subscription key

0 commit comments

Comments
 (0)