feat(guardrails): add Veto guardrail plugin#1670
Open
OdysseusU wants to merge 1 commit into
Open
Conversation
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.
Description: (required)
Adds Veto as a native guardrail provider. Veto is an
EU-hosted LLM guardrail layer (PII/secret redaction, prompt-injection detection,
content moderation) behind one endpoint. Independent benchmark:
https://bench.vetocheck.com
plugins/veto/—manifest.json,check.ts(handler),check.test.ts.veto.checkinplugins/index.ts.POST /v1/checkand maps the verdict onto thePluginHandlercontract —block→verdict:false,redact→verdict:true+ maskedtransformedData,allow→verdict:true. Nodetection logic in the gateway.
getCurrentContentPart/setCurrentContentPartutils (handles multimodal text parts); posts via theshared
postutil with a configurabletimeout(default 30s).HttpError), timeout, thrown error, or missingapiKey(verdict:false) — consistent with screening guardrails; anunreachable backend must not pass unscanned text through.
data.findingscarries onlycategory/rule/severity/score; thematched substring and offsets are stripped so PII/secrets never reach request
logs.
apiKey(encrypted) + optionalapiBase. Params:categories,redact,timeout.Tests Run/Test cases added: (required)
npx jest plugins/veto/check.test.ts— 10 passing:allow→ verdict true, no transformblock→ verdict falseredact(single part) → verdict true + maskedtransformedDataapiKey→ fail-closed, no network callType of Change: