Skip to content

Commit

Permalink
Correct spelling and types
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheepsta300 committed Oct 8, 2024
1 parent 372a5d2 commit 01a0006
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/integrations/tools/azure_ai_face.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Instatiation"
"## Instantiation"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_faces_detected(mocker: Any) -> None:

tool.face_client = mock_content_client

input: str = FACE
input: str = str(FACE)
output = "FACE: 1\nfaceId: 69d017e8-464e-42c1-adfb-5b7fec0526ea\n"

result = tool._run(input)
Expand All @@ -72,7 +72,7 @@ def test_no_faces_detected(mocker: Any) -> None:

tool.face_client = mock_content_client

input: str = NO_FACE
input: str = str(NO_FACE)
output = "No faces found"

result = tool._run(input)
Expand Down

0 comments on commit 01a0006

Please sign in to comment.