feat: Add tutorial on securing pipelines against runaway costs and PII leaks#467
Open
nagasatish007 wants to merge 2 commits into
Open
feat: Add tutorial on securing pipelines against runaway costs and PII leaks#467nagasatish007 wants to merge 2 commits into
nagasatish007 wants to merge 2 commits into
Conversation
This tutorial covers securing multi-agent pipelines against runaway costs and PII leaks using TealTiger governance. It includes steps for building a RAG pipeline, installing dependencies, and implementing governance checks.
Added a new tutorial entry for securing pipelines.
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New Tutorial: Securing Pipelines Against Runaway Costs and PII Leaks
Adds tutorial #50 demonstrating how to add deterministic governance to Haystack pipelines using TealTiger.
What it covers
TealTigerGovernanceFilterHaystack componentWhy this is useful for Haystack users
Once agents can call tools and query databases, new risks appear: PII flowing to the model, secrets in generated code, and cost runaway from infinite loops. This tutorial shows how to prevent all three with a deterministic governance layer that adds <5ms overhead and requires no additional LLM calls.
Tutorial metadata
tealtigerOpenAIChatGenerator,Pipeline, custom@componentChecklist
index.toml50_Securing_Pipelines_Against_Runaway_Costs_and_PII_Leaks.ipynbAbout TealTiger
TealTiger is an open-source (Apache 2.0) deterministic governance SDK for AI agents. It provides PII detection, secret scanning (500+ patterns), cost tracking, and policy enforcement with <5ms overhead and no LLM in the governance path. Available on PyPI and npm.
Note: TealTiger is already listed as a community integration in the Haystack documentation:
https://haystack.deepset.ai/integrations/tealtiger
The
tealtiger-haystackpackage is available on PyPI and follows the Haystack integration pattern. This tutorial complements the existing integration page by providing a hands-on walkthrough showing the governance capabilities in action within a pipeline context.