diff --git a/backend/open_webui/retrieval/vector/dbs/chroma.py b/backend/open_webui/retrieval/vector/dbs/chroma.py index 81f7a1c5e..b4a79da04 100755 --- a/backend/open_webui/retrieval/vector/dbs/chroma.py +++ b/backend/open_webui/retrieval/vector/dbs/chroma.py @@ -108,7 +108,9 @@ class ChromaClient: ) return None except Exception as e: - log.exception(f"Error querying collection {collection} with limit {limit}: {e}") + log.exception( + f"Error querying collection {collection_name} with limit {limit}: {e}" + ) return None def get(self, collection_name: str) -> Optional[GetResult]: