From 85a2c21b699e9e30f7305877dcda57f92e235e4d Mon Sep 17 00:00:00 2001 From: ACBBZ Date: Tue, 19 Aug 2025 11:20:02 +0800 Subject: [PATCH] feat: fix text_ids parameter error --- src/blackbox/chroma_upsert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackbox/chroma_upsert.py b/src/blackbox/chroma_upsert.py index 8c9e5c1..fda0e14 100755 --- a/src/blackbox/chroma_upsert.py +++ b/src/blackbox/chroma_upsert.py @@ -125,7 +125,7 @@ class ChromaUpsert(Blackbox): if text is not None and text_ids is not None: Chroma.from_texts(texts=[text], embedding=embedding_model, ids=[text_ids], collection_name=chroma_collection_id, client=client) - response_string = f"\n{text} ids is {ids}" + response_string = f"\n{text} ids is {text_ids}" vector_count = client.get_collection(chroma_collection_id).count()