Uploading tables to weaviate database

So, i have made a chatbot. And i want to save the userdata from chatbot into weaviate. So, i am extracting 4 things from that chatbot, user_id, query, response from chatbot, and time taken for response. I want to save it in a structured format and save it to weaviate. First of all, i want to use my own embeddings, i.e., huggingface embeddings. And i also want to save them in a way that semantic search would be possible in it. So, what are the possibe ways to do this?

Thank You!

hi @tapish_22.11 !!

When you ingest your data, the collection schema definition will use only fields you want to compose that object vectors, or you can also send all of them.

You can both generate the vectors yourself (Bring your own Vectors) our use huggingface both as a service or locally hosted.

Let me know if this helps!

THanks!