Skip to content

Commit 2e086f9

Browse files
authored
Updates to module for updated PowerSkill
1 parent 4ea6d53 commit 2e086f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workshops/Module 4.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ PUT https://{name of your service}.search.windows.net/indexes/clinical-trials-s
6969

7070
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.
7171

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

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

@@ -126,7 +126,7 @@ To get the URI, you will need to get it from the published skill you tested in m
126126
],
127127
"outputs": [
128128
{
129-
"name": "EntitiesFound",
129+
"name": "entities",
130130
"targetName": "diseases"
131131
}
132132
]
@@ -149,7 +149,7 @@ To get the URI, you will need to get it from the published skill you tested in m
149149
"inputs": [
150150
{
151151
"name": "disease",
152-
"source": "/document/diseases/*"
152+
"source": "/document/diseases/*/name"
153153
}
154154
]
155155
},

0 commit comments

Comments
 (0)