How do I use haystack for private data? #4565
Replies: 2 comments 2 replies
-
Haystack doesn't store/stream any of your data anywhere. At best, we collect the events, nothing else. If you even want to disable the events, also you can do it by |
Beta Was this translation helpful? Give feedback.
-
Confirming what Mayank said, with Haystack your data always stays on your local machine unless you explicitly use an external API. For example, for your use case you would probably choose a document store other than PineconeDocumentStore and you would not use the PromptNode with an OpenAI API key but only with local models. In short, as long as you do not explicitly provide API keys to Haystack, your data will stay on your machine. |
Beta Was this translation helpful? Give feedback.
-
I want to use haystack pipelines to train the models with private data. As I am using haystack locally, I assume it is safe. My question is, how can I ensure that data is not stored somewhere while processing and training with confidential data?
Beta Was this translation helpful? Give feedback.
All reactions