You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,10 @@
1
1
# Changelog
2
2
3
3
## Unreleased Changes
4
+
### Changed
5
+
- Added support for deleting vectors by metadata filter. The pinecone.Index.delete() api now accepts an additional filter= parameter which takes metadata filter expression equivalent to what query() supports.
6
+
- Internally these requests are now sent as POST requests, though the previous DELETE api is still supported.
delete_all (bool): This indicates that all vectors in the index namespace should be deleted.. [optional] if omitted the server will use the default value of False
189
+
namespace (str): The namespace to delete vectors from, if applicable.. [optional]
190
+
_return_http_data_only (bool): response data without head status
191
+
code and headers. Default is True.
192
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
193
+
will be returned without reading/decoding response data.
194
+
Default is True.
195
+
_request_timeout (int/float/tuple): timeout setting for this request. If
196
+
one number provided, it will be total request timeout. It can also
197
+
be a pair (tuple) of (connection, read) timeouts.
198
+
Default is None.
199
+
_check_input_type (bool): specifies if type checking
200
+
should be done one the data sent to the server.
201
+
Default is True.
202
+
_check_return_type (bool): specifies if type checking
203
+
should be done one the data received from the server.
204
+
Default is True.
205
+
_host_index (int/None): specifies the index of the server
0 commit comments