Timothy Jaeryang Baek 2 months ago
parent
commit
46ac6f2b29
1 changed files with 3 additions and 1 deletions
  1. 3 1
      backend/open_webui/retrieval/vector/dbs/chroma.py

+ 3 - 1
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]: