From bfc8a3b99df51120036aa44bf1f5bfa6541cd0f3 Mon Sep 17 00:00:00 2001 From: kimbwook Date: Thu, 11 Sep 2025 23:09:31 +0900 Subject: [PATCH] change exception log parse to chunk --- llama_stack/providers/remote/vector_io/chroma/chroma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/providers/remote/vector_io/chroma/chroma.py b/llama_stack/providers/remote/vector_io/chroma/chroma.py index 5aaf91ee7..2f4f94b53 100644 --- a/llama_stack/providers/remote/vector_io/chroma/chroma.py +++ b/llama_stack/providers/remote/vector_io/chroma/chroma.py @@ -136,7 +136,7 @@ class ChromaIndex(EmbeddingIndex): doc_data = json.loads(doc) chunk = Chunk(**doc_data) except Exception: - log.exception(f"Failed to parse document: {doc}") + log.exception(f"Failed to load chunk: {doc}") continue score = 1.0 / (1.0 + float(dist)) if dist is not None else 1.0