9
9
import re # noqa: F401
10
10
import json
11
11
12
- from pydantic import BaseModel , ConfigDict , Field , StrictFloat , StrictInt
12
+ from pydantic import BaseModel , ConfigDict , Field , StrictFloat , StrictInt , StrictStr
13
13
from typing import Any , ClassVar , Dict , List , Optional , Union
14
14
from typing import Optional , Set
15
15
from typing_extensions import Self
@@ -21,7 +21,7 @@ class FaceApiSearch(BaseModel):
21
21
""" # noqa: E501
22
22
limit : SkipValidation [Optional [int ]] = Field (alias = "limit" , default = None , description = "The maximum number of results to be returned." )
23
23
threshold : SkipValidation [Optional [float ]] = Field (alias = "threshold" , default = None , description = "The similarity threshold." )
24
- group_ids : SkipValidation [Optional [List [int ]]] = Field (alias = "group_ids" , default = None , description = " The groups where to conduct the search." )
24
+ group_ids : SkipValidation [Optional [List [str ]]] = Field (alias = "group_ids" , default = None , description = " The groups where to conduct the search." )
25
25
__properties : ClassVar [List [str ]] = ["limit" , "threshold" , "group_ids" ]
26
26
27
27
model_config = ConfigDict (
0 commit comments