We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72cb36f commit 433a610Copy full SHA for 433a610
chromadb/api/models/CollectionCommon.py
@@ -278,8 +278,8 @@ def _validate_and_prepare_get_request(
278
"You must set a data loader on the collection if loading from URIs."
279
)
280
281
- # Prepare
282
- request_include = include
+ # Copy the list before any in-place modifications.
+ request_include = list(include) if include else []
283
# We need to include uris in the result from the API to load datas
284
if "data" in include and "uris" not in include:
285
request_include.append("uris")
0 commit comments