From e851a2a8b610e983407c8a410bf26f476860f6a8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 25 Aug 2025 07:58:40 +0000 Subject: [PATCH] Update descriptions --- regula/facesdk/webclient/gen/api/match_api.py | 4 ++-- .../facesdk/webclient/gen/model/match_and_search_request.py | 4 ++-- regula/facesdk/webclient/gen/model/match_request.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/regula/facesdk/webclient/gen/api/match_api.py b/regula/facesdk/webclient/gen/api/match_api.py index 80ba516..46617d4 100644 --- a/regula/facesdk/webclient/gen/api/match_api.py +++ b/regula/facesdk/webclient/gen/api/match_api.py @@ -323,7 +323,7 @@ def match_with_http_info(self, match_request, **kwargs): # noqa: E501 def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501 """match and search (1:1 + 1:N) # noqa: E501 - To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, match is not performed and only search is carried out. # noqa: E501 + To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. At least two photos are required. If, after processing two or more photos, only one face is detected across them, the match step is skipped, and only the search is carried out. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -355,7 +355,7 @@ def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501 def match_and_search_with_http_info(self, match_and_search_request, **kwargs): # noqa: E501 """match and search (1:1 + 1:N) # noqa: E501 - To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, match is not performed and only search is carried out. # noqa: E501 + To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. At least two photos are required. If, after processing two or more photos, only one face is detected across them, the match step is skipped, and only the search is carried out. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True diff --git a/regula/facesdk/webclient/gen/model/match_and_search_request.py b/regula/facesdk/webclient/gen/model/match_and_search_request.py index ed0724c..9dd6f30 100644 --- a/regula/facesdk/webclient/gen/model/match_and_search_request.py +++ b/regula/facesdk/webclient/gen/model/match_and_search_request.py @@ -109,7 +109,7 @@ def tag(self, tag): def images(self): """Gets the images of this MatchAndSearchRequest. # noqa: E501 - Person's images. # noqa: E501 + An array of images to be processed. At least two images must be provided. # noqa: E501 :return: The images of this MatchAndSearchRequest. # noqa: E501 :rtype: [MatchAndSearchRequestImages] @@ -120,7 +120,7 @@ def images(self): def images(self, images): """Sets the images of this MatchAndSearchRequest. - Person's images. # noqa: E501 + An array of images to be processed. At least two images must be provided. # noqa: E501 :param images: The images of this MatchAndSearchRequest. # noqa: E501 :type images: [MatchAndSearchRequestImages] diff --git a/regula/facesdk/webclient/gen/model/match_request.py b/regula/facesdk/webclient/gen/model/match_request.py index 8176a35..76d15d3 100644 --- a/regula/facesdk/webclient/gen/model/match_request.py +++ b/regula/facesdk/webclient/gen/model/match_request.py @@ -98,7 +98,7 @@ def tag(self, tag): def images(self): """Gets the images of this MatchRequest. # noqa: E501 - All images included in the comparison. # noqa: E501 + An array of images to be processed. At least two images must be provided. # noqa: E501 :return: The images of this MatchRequest. # noqa: E501 :rtype: [MatchImage] @@ -109,7 +109,7 @@ def images(self): def images(self, images): """Sets the images of this MatchRequest. - All images included in the comparison. # noqa: E501 + An array of images to be processed. At least two images must be provided. # noqa: E501 :param images: The images of this MatchRequest. # noqa: E501 :type images: [MatchImage]