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
@@ -20,7 +20,7 @@ class FaceApiSearch(BaseModel):
20
20
""" # noqa: E501
21
21
limit : Optional [StrictInt ] = Field (default = None , description = "The maximum number of results to be returned." )
22
22
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." )
24
24
__properties : ClassVar [List [str ]] = ["limit" , "threshold" , "group_ids" ]
25
25
26
26
model_config = ConfigDict (
0 commit comments