Conversational Retrieval QA Chain - context update - question
Is there any way to update the context of the Conversational Retrieval QA Chain (chatFlow from marketplace) - seems that that the context is "Hard Coded" with only the info coming from the vector store and there is no way to update it externally - ideally I want to have the ability to update it from a plan text file
Do you mean this one?
You need to save the template and then you can change it.
thanks for your answer - I know I can edit the prompt over this area , the issue is that I want to update it from an external file and potentially from some template file dynamicly, if the node component had another input with some prompt node that would be ideal or in other way somehow...
No sure what you want to accomplish here but when you use a Multi Retrieval QA Chain you can add a Vector Store Retriever node to let the model know when you use the info from a Vector Store and then, if you want to, use the Chain Tool to connect the whole chain to an Agent and let the Agent when to use the chain.
I do not think there is a easy way to do it "dynamically".
--

Here is the template of the whole chatfhow: Template (Multi Retrieval Chain) Chatflow.json
@haimco50 the ideal way is as follow: 1.) Upsert your data with different metadata to vector store 2.) Using Flowise API, you can override the config metadata filter:
{
"question": "what is my name",
"overrideConfig": {
"pineconeMetadataFilter": {"source": "doc1"}
}
}
thanks much @toi500 and @HenryHengZJ for your suggestions - will try it out!