You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created the RAG pipeline in which I am saving data in the variable "self.campaign_data":
def __init__(self):
# Optionally, you can set the id and name of the pipeline.
self.name = "Pipeline XYZ"
self.campaign_data = {
"company_name": None,
"product_name": None,
"date_from": None,
"date_to": None
}
pass
I would like to have it reset on every new "Pipeline XYZ" chat window, but for now, it is taking data entered in different chats and using it in the new conversations.
The text was updated successfully, but these errors were encountered:
I created the RAG pipeline in which I am saving data in the variable "self.campaign_data":
I would like to have it reset on every new "Pipeline XYZ" chat window, but for now, it is taking data entered in different chats and using it in the new conversations.
The text was updated successfully, but these errors were encountered: