Open
Description
I was looking at the video for the lesson Retrieval Augmented Generation (RAG) and Vector Databases. The Python script used to call the model with user_input
and RAG documents, seems to ignore the RAG documents when constructing the chat messages.
In the messages list, only the last history item history[-1]
, the user_input
, is added. No further references of history
indicate that the RAG documents are provided to the model.