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()