diff --git a/llama-index-integrations/vector_stores/llama-index-vector-stores-astra-db/llama_index/vector_stores/astra_db/base.py b/llama-index-integrations/vector_stores/llama-index-vector-stores-astra-db/llama_index/vector_stores/astra_db/base.py index 03ee81d297415f22f8e93e1465aa446d201f1a1b..d2cafbb6a2f8d9dd79ef8f416b4e1ad41859f86e 100644 --- a/llama-index-integrations/vector_stores/llama-index-vector-stores-astra-db/llama_index/vector_stores/astra_db/base.py +++ b/llama-index-integrations/vector_stores/llama-index-vector-stores-astra-db/llama_index/vector_stores/astra_db/base.py @@ -126,9 +126,11 @@ class AstraDBVectorStore(BasePydanticVectorStore): if "indexing" not in pre_col_options: warn( ( - f"Collection '{collection_name}' is detected as legacy" - " and has indexing turned on for all fields. This" - " implies stricter limitations on the amount of text" + f"Collection '{collection_name}' is detected as " + "having indexing turned on for all fields " + "(either created manually or by older versions " + "of this plugin). This implies stricter " + "limitations on the amount of text" " each entry can store. Consider reindexing anew on a" " fresh collection to be able to store longer texts." ),