Skip to content

Commit 9570369

Browse files
Merge pull request #258 from regulaforensics/aaac83f0
Commit: aaac83f0
2 parents 0b6c28c + 9298763 commit 9570369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regula/documentreader/webclient/gen/models/face_api_search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import re # noqa: F401
1010
import json
1111

12-
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
12+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
1313
from typing import Any, ClassVar, Dict, List, Optional, Union
1414
from typing import Optional, Set
1515
from typing_extensions import Self
@@ -20,7 +20,7 @@ class FaceApiSearch(BaseModel):
2020
""" # noqa: E501
2121
limit: Optional[StrictInt] = Field(default=None, description="The maximum number of results to be returned.")
2222
threshold: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The similarity threshold.")
23-
group_ids: Optional[List[StrictInt]] = Field(default=None, description=" The groups where to conduct the search.")
23+
group_ids: Optional[List[StrictStr]] = Field(default=None, description=" The groups where to conduct the search.")
2424
__properties: ClassVar[List[str]] = ["limit", "threshold", "group_ids"]
2525

2626
model_config = ConfigDict(

0 commit comments

Comments
 (0)