Browse Source

Fixed typo

Marko Henning 3 months ago
parent
commit
f13948d805
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/open_webui/retrieval/utils.py

+ 1 - 1
backend/open_webui/retrieval/utils.py

@@ -151,7 +151,7 @@ def query_doc_with_hybrid_search(
             distances, documents, metadatas = map(list, zip(*sorted_items))
         result = {
             "distances": [distances],
-            "documents": [documents]
+            "documents": [documents],
             "metadatas": [metadatas],
         }