AttributeError Cell In[1], line 26 21 from llama_index.core.vector_stores import ExactMatchFilter, MetadataFilters 25 # Initialize the vector store ---> 26 vector_store = ElasticsearchStore( 27 index_name="", 28 es_cloud_id="", 29 es_user="", 30 es_password="", 33 ) /venv/lib/python3.11/site-packages/llama_index/vector_stores/elasticsearch/base.py:197, in ElasticsearchStore.init(self, index_name, es_client, es_url, es_cloud_id, es_api_key, es_user, es_password, text_field, vector_field, batch_size, distance_strategy) 193 self._client = es_client.options( 194 headers={"user-agent": self.get_user_agent()} 195 ) 196 elif es_url is not None or es_cloud_id is not None: --> 197 self._client = _get_elasticsearch_client( 198 es_url=es_url, 199 username=es_user, 200 password=es_password, ... 230 """Get user agent for elasticsearch client.""" 231 import llama_index --> 233 return f"llama_index-py-vs/{llama_index.core.version}" AttributeError: module 'llama_index.core' has no attribute 'version' Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings... The code is given below: from llama_index.vector_stores.elasticsearch import ElasticsearchStore from llama_index.core import VectorStoreIndex, StorageContext from llama_index.core.vector_stores import ExactMatchFilter, MetadataFilters