We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa3834 commit 58c4f40Copy full SHA for 58c4f40
learn-pr/wwl-data-ai/detect-analyze-recognize-faces/includes/3-detect-analyze-faces.md
@@ -10,7 +10,7 @@ from azure.ai.vision.face.models import *
10
from azure.core.credentials import AzureKeyCredential
11
12
face_client = FaceClient(
13
- endpoint="<YOUR_RESOURCE_ENDPOINT">,
+ endpoint="<YOUR_RESOURCE_ENDPOINT>",
14
credential=AzureKeyCredential("<YOUR_RESOURCE_KEY>"))
15
```
16
@@ -23,7 +23,7 @@ using Azure;
23
using Azure.AI.Vision.Face;
24
25
FaceClient faceClient = new FaceClient(
26
- new Uri("<YOUR_RESOURCE_ENDPOINT">),
+ new Uri("<YOUR_RESOURCE_ENDPOINT>"),
27
new AzureKeyCredential("<YOUR_RESOURCE_KEY>"));
28
29
0 commit comments