> For the complete documentation index, see [llms.txt](https://docs.mozilla.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mozilla.ai/any-guardrail/api-reference/index/prompt-injection/sentinel.md).

# Sentinel

Binary prompt-injection classifier.

Runs Qualifire's DeBERTa-based encoder classifier over a single user prompt and reports whether the text is a prompt-injection / jailbreak attempt. The model is a two-class sequence classifier whose unsafe class is labeled `"jailbreak"`; the guardrail treats that class as the risky one.

Expected input: prompt-only text. `validate(input_text)` accepts a single string, or a `list[str]` to classify a batch in one call; there is no prompt+response or chat-message mode.

Verdict mapping onto `GuardrailOutput`:

* `valid` is `True` when the predicted class is not `"jailbreak"` (i.e. the text looks safe).
* `score` is the model's probability of the `"jailbreak"` class (canonical risk direction: higher = riskier).
* `categories` carries one `CategoryResult` per class label, each with its softmax `score` and a `triggered` flag marking the argmax class.
* No `spans` or `modified_text` are produced.

For more information, see:

* [Sentinel model card](https://huggingface.co/qualifire/prompt-injection-sentinel)

## Supported Models

* `qualifire/prompt-injection-sentinel`

## Constructor

| Parameter  | Type                                                 | Required | Default | Description                                                                                                                                                                                                                                     |
| ---------- | ---------------------------------------------------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `model_id` | \`str                                                | None\`   | No      | `None`                                                                                                                                                                                                                                          |
| `provider` | `Optional[Provider[dict[str, Any], dict[str, Any]]]` | No       | `None`  | Execution backend that loads the model and runs inference. Defaults to a `HuggingFaceProvider` targeting `AutoModelForSequenceClassification`. Supply your own to control device, dtype, or `cache_dir`, or to run against a different backend. |

Initialize the Sentinel guardrail.

## validate

Default validation pipeline: preprocess -> inference -> postprocess.

**Parameters**

| Parameter    | Type  | Required     | Default | Description |
| ------------ | ----- | ------------ | ------- | ----------- |
| `input_text` | \`str | list\[str]\` | Yes     | —           |

**Returns:** `GuardrailOutput | list[GuardrailOutput]`

## Benchmarks

### Prompt Injection

| Dataset (rev)              | Metric | Threshold    | Value     | Harness                 | Source                           | Contam. |
| -------------------------- | ------ | ------------ | --------- | ----------------------- | -------------------------------- | ------- |
| deepset\_pi (unspecified)  | f1     | native-valid | 0.857143  | guardrail-bench+ag0.7.4 | measured:guardrail-bench+ag0.7.4 |         |
| notinject (unspecified)    | fpr    | native-valid | 0.242105  | guardrail-bench+ag0.7.4 | measured:guardrail-bench+ag0.7.4 |         |
| gandalf (unspecified)      | recall | native-valid | 1         | guardrail-bench+ag0.7.4 | measured:guardrail-bench+ag0.7.4 |         |
| bipia\_email (unspecified) | f1     | native-valid | 0.874435  | bir\@fd86c16            | measured:bir\@fd86c16            |         |
| bipia\_table (unspecified) | f1     | native-valid | 0.0314807 | bir\@fd86c16            | measured:bir\@fd86c16            |         |

## License

* **Vendor:** Qualifire
* **Default license:** `elastic-2.0` (of the default model/service)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.mozilla.ai/any-guardrail/api-reference/index/prompt-injection/sentinel.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
