Hello,
We have a help documents on our website for our web application. This help documents on our websites are well documented (with text and images). It has a list of Topics and each topic has its own url with sub topic in it. We would like to build a UI where user can search for question (mostly how to questions) and we would like to present content from help center.
I am thinking about solution with following:
- Vectorize each topic and sub topic into elastic document
- Vectorize user questions and store them into Elasticsearch database.
- Retrieve similar questions and find relevant data from elastic
- Use LLM to summarize (including text and images).
Questions:
Is storing image and text together as embedding a good option?
When I fire question to elastic, how can i show image and text together to the user?
What are other approaches available for me?