Hi , Currently i am working on Hugging face model which embed the scrapped article from the website and storing the vectors in the weaviate. I am having a database for the scrapped articles with columns id,url,title, description. The article description is too large, so i am chunking before feeding it to the model. So i want to know that whether weaviate do accept text and dates with vectors related to it or not. I am using a cryptographic hash for the id column. And i want the data to be stored in the following format (with its meta data) while appending. Apologies if my understanding towards weaviate is wrong. Please respond with corresponding tutorial link or appropriate code. Thanks
(hash_id, vector, {“id”: id, “url”: link, “chunk-id”: chunk-id, “title”:title, “description”: raw_text_of_chunked_text, date: date })