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 da75706 commit c9a8808Copy full SHA for c9a8808
backend/open_webui/routers/retrieval.py
@@ -760,7 +760,11 @@ def _get_docs_info(docs: list[Document]) -> str:
760
# for meta-data so convert them to string.
761
for metadata in metadatas:
762
for key, value in metadata.items():
763
- if isinstance(value, datetime):
+ if (
764
+ isinstance(value, datetime)
765
+ or isinstance(value, list)
766
+ or isinstance(value, dict)
767
+ ):
768
metadata[key] = str(value)
769
770
try:
0 commit comments