Timothy Jaeryang Baek 2 달 전
부모
커밋
46ac6f2b29
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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]: