Replies: 1 comment 2 replies
-
Hi, Unfortunately, you cannot ask LLM to do that using this RAG strategy. The RAG is able only to read from chunk and get an answer about your question. Otherwise, you could store only the document name (e.g: document name: toto.txt, ...) in your vector database. then when you ask about "does all document have the same name?", it might see that some documents doesn't have the same name and answer you no... The best for me is to use analytical database and use Semantic Kernel plugin to connect to your analytical database and use query to get distinct document names... |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have severals documents(5) embedded whith user information (name, firstname).
I would verify that all documents contains the same name.
my pompt is like "checks that in all documents the names are identical".
Response said yes but relevant source return max 3 sources .
Is it possible to force memory kernel to analyse all sources or x sources ?
I have tested with filters by tag or by document without success.
thanks
Beta Was this translation helpful? Give feedback.
All reactions