Skip to content

Add TealTiger governance integration#497

Open
nagasatish007 wants to merge 4 commits into
deepset-ai:mainfrom
agentguard-ai:main
Open

Add TealTiger governance integration#497
nagasatish007 wants to merge 4 commits into
deepset-ai:mainfrom
agentguard-ai:main

Conversation

@nagasatish007
Copy link
Copy Markdown

Adds the tealtiger-haystack governance component to the integrations listing. Published on PyPI: https://pypi.org/project/tealtiger-haystack/0.1.0/ Ref: deepset-ai/haystack#11522

nagasatish007 and others added 4 commits June 5, 2026 15:14
Add documentation for TealTiger integration with Haystack, including installation, usage examples, and features.
@nagasatish007 nagasatish007 requested a review from a team as a code owner June 5, 2026 09:52
@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 5, 2026

@nagasatish007 is attempting to deploy a commit to the deepset Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Add a new integration documentation page to list the TealTiger governance component in the Haystack integrations catalog.

Changes:

  • Add integrations/tealtiger.md with installation + usage examples for the tealtiger-haystack package.
  • Document governance modes (observe/enforce), features, and support links.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread integrations/tealtiger.md
Comment on lines +13 to +16
report_issue: https://github.com/agentguard-ai/tealtiger/issues
logo: /logos/tealtiger.png
version: Haystack 2.0
---
Comment thread integrations/tealtiger.md
Comment on lines +17 to +26


# TealTiger Governance for Haystack

[![PyPI - Version](https://img.shields.io/pypi/v/tealtiger-haystack.svg)](https://pypi.org/project/tealtiger-haystack)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/tealtiger-haystack.svg)](https://pypi.org/project/tealtiger-haystack)

Add deterministic governance to any Haystack pipeline. No LLM in the governance path — all policy evaluation is deterministic, adding <2ms latency.

## Installation
Comment thread integrations/tealtiger.md
pip install tealtiger-haystack
```

## Usage ⚡️
Comment thread integrations/tealtiger.md
Comment on lines +39 to +46
from haystack import Pipeline
from haystack_integrations.components.connectors.tealtiger import (
TealTigerGovernanceComponent,
)

pipeline = Pipeline()
pipeline.add_component("governance", TealTigerGovernanceComponent())
pipeline.add_component("llm", your_generator)
Comment thread integrations/tealtiger.md
Comment on lines +63 to +79
from tealtiger import TealEngine
from haystack_integrations.components.connectors.tealtiger import (
TealTigerGovernanceComponent,
)

engine = TealEngine(policies=[
{"type": "cost_limit", "max_per_session": 5.00},
{"type": "pii_block", "categories": ["ssn", "credit_card"]},
])

pipeline = Pipeline()
pipeline.add_component(
"governance",
TealTigerGovernanceComponent(engine=engine, mode="ENFORCE"),
)
pipeline.add_component("llm", your_generator)
pipeline.connect("governance.text", "llm.prompt")
Comment thread integrations/tealtiger.md
Comment on lines +95 to +99
## Support 📞

- [GitHub Issues](https://github.com/agentguard-ai/tealtiger/issues)
- [TealTiger Documentation](https://tealtiger.ai)
- [OWASP ASI Coverage](https://github.com/agentguard-ai/tealtiger) — 8/10 Agentic Security Index categories
@kacperlukawski kacperlukawski self-requested a review June 8, 2026 15:01
Copy link
Copy Markdown
Member

@kacperlukawski kacperlukawski left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for contributing it, @nagasatish007. I like the idea for a tool, but would appreciate if you could check the changes suggested by Copilot, as they are all to the point.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants