(knext)bugfix

This commit is contained in:
秉初 2024-12-09 20:19:41 +08:00
parent 316fd8d856
commit c00fd998eb
3 changed files with 7 additions and 23 deletions

View File

@ -99,4 +99,4 @@ if __name__ == "__main__":
"Entity", [{"name": "Anxiety_and_nervousness", "type": "Entity"}]
)
for o in out:
print(o)
print(o)

View File

@ -81,9 +81,11 @@ class TextSearchRequest(object):
self.project_id = project_id
self.query_string = query_string
self.label_constraints = label_constraints
if label_constraints is not None:
self.label_constraints = label_constraints
self.topk = topk
self.params = params
if params is not None:
self.params = params
@property
def project_id(self):
@ -158,13 +160,6 @@ class TextSearchRequest(object):
:param label_constraints: The label_constraints of this TextSearchRequest. # noqa: E501
:type: list[str]
"""
if (
self.local_vars_configuration.client_side_validation
and label_constraints is None
): # noqa: E501
raise ValueError(
"Invalid value for `label_constraints`, must not be `None`"
) # noqa: E501
self._label_constraints = label_constraints
@ -213,12 +208,6 @@ class TextSearchRequest(object):
:param params: The params of this TextSearchRequest. # noqa: E501
:type: object
"""
if (
self.local_vars_configuration.client_side_validation and params is None
): # noqa: E501
raise ValueError(
"Invalid value for `params`, must not be `None`"
) # noqa: E501
self._params = params

View File

@ -94,7 +94,8 @@ class VectorSearchRequest(object):
if ef_search is not None:
self.ef_search = ef_search
self.topk = topk
self.params = params
if params is not None:
self.params = params
@property
def project_id(self):
@ -272,12 +273,6 @@ class VectorSearchRequest(object):
:param params: The params of this VectorSearchRequest. # noqa: E501
:type: object
"""
if (
self.local_vars_configuration.client_side_validation and params is None
): # noqa: E501
raise ValueError(
"Invalid value for `params`, must not be `None`"
) # noqa: E501
self._params = params