Skip to content

Commit

Permalink
Updates to module for updated PowerSkill
Browse files Browse the repository at this point in the history
  • Loading branch information
cynotebo authored Oct 29, 2019
1 parent 4ea6d53 commit 2e086f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workshops/Module 4.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ PUT https://{name of your service}.search.windows.net/indexes/clinical-trials-s

If the PUT request is successful you will be returned a status code of 204. This indicates that the index updated successfully. There will be no content in the Body of the response.

Now let’s modify the skillset to incorporate the disease extractor we built in Module 2.
Now let’s modify the skillset to incorporate the disease extractor we built in Module 3.

First, let’s inspect what our skillset definition looks like. Bring up POSTMAN, and issue this request:

Expand Down Expand Up @@ -126,7 +126,7 @@ To get the URI, you will need to get it from the published skill you tested in m
],
"outputs": [
{
"name": "EntitiesFound",
"name": "entities",
"targetName": "diseases"
}
]
Expand All @@ -149,7 +149,7 @@ To get the URI, you will need to get it from the published skill you tested in m
"inputs": [
{
"name": "disease",
"source": "/document/diseases/*"
"source": "/document/diseases/*/name"
}
]
},
Expand Down

0 comments on commit 2e086f9

Please sign in to comment.