Skip to content

Commit b9ca800

Browse files
committed
Add missed model object and update deleted_count doc
1 parent 4b33853 commit b9ca800

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pinecone/core/client/model/delete_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
139139
Animal class but this time we won't travel
140140
through its discriminator because we passed in
141141
_visited_composed_classes = (Animal,)
142-
deleted_count (int): The number of vectors deleted.. [optional] # noqa: E501
142+
deleted_count (int): The number of vectors deleted. 0 for requests with delete_all.. [optional] # noqa: E501
143143
"""
144144

145145
_check_type = kwargs.pop('_check_type', True)
@@ -221,7 +221,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
221221
Animal class but this time we won't travel
222222
through its discriminator because we passed in
223223
_visited_composed_classes = (Animal,)
224-
deleted_count (int): The number of vectors deleted.. [optional] # noqa: E501
224+
deleted_count (int): The number of vectors deleted. 0 for requests with delete_all.. [optional] # noqa: E501
225225
"""
226226

227227
_check_type = kwargs.pop('_check_type', True)

specs/pinecone_api.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
"type": "integer",
474474
"format": "int64",
475475
"example": 10,
476-
"description": "The number of vectors deleted."
476+
"description": "The number of vectors deleted. 0 for requests with delete_all."
477477
}
478478
},
479479
"description": "The response for the `Delete` operation."

specs/vector_service.openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@
294294
"type": "integer",
295295
"format": "int64",
296296
"example": 10,
297-
"description": "The number of vectors deleted."
297+
"description": "The number of vectors deleted. 0 for requests with delete_all."
298298
}
299299
},
300300
"description": "The response for the `Delete` operation."

0 commit comments

Comments
 (0)