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