mirror of
https://github.com/open-webui/pipelines.git
synced 2026-07-21 10:05:26 -04:00
How to clear pipeline data? #122
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Panicum on GitHub (Sep 18, 2024).
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.
@jedwards1230 commented on GitHub (Nov 15, 2024):
I think the server holds that
self.campaign_datain-memory across all your chats while the pipelines server is running. You would need to add code to your pipeline to grab and store an ID for each thread and do the lookup in your pipe.