Skip to content

Commit 0871e90

Browse files
committed
Fix typos
1 parent 61584a8 commit 0871e90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ At the moment, the following detectors are supported:
1010

1111
- `huggingface` -- a generic detector class that is intended to be compatible with any [AutoModelForSequenceClassification](https://huggingface.co/docs/transformers/en/model_doc/auto#transformers.AutoModelForSequenceClassification) or a specific kind of [AutoModelForCausalLM](https://huggingface.co/docs/transformers/en/model_doc/auto#transformers.AutoModelForCausalLM), namely [GraniteForCausalLM](https://github.com/ibm-granite/granite-guardian); this detector exposes `/api/v1/text/contents` and thus, could be configured to be a detector of type: `text_contents` within the FMS Guardrails Orchestrator framework. This detector is also intended to be deployed as a [KServe](https://github.com/kserve/kserve) inference service.
1212
- `llm_judge` -- Integrates the [vLLM Judge](https://github.com/trustyai-explainability/vllm_judge) library to use LLM-as-a-judge based guardrailing architecture
13-
- `built_in` -- Small, lightweight detection functions that are deployed out-of-the-box alongside the [Guardrails Orchestrator]([https://github.com/foundation-model-stack/fms-guardrails-orchestrator). The built-in detectors provide a number of heuristic or algorithmic detection functions, such as:
13+
- `builtIn` -- Small, lightweight detection functions that are deployed out-of-the-box alongside the [Guardrails Orchestrator](https://github.com/foundation-model-stack/fms-guardrails-orchestrator). The built-in detectors provide a number of heuristic or algorithmic detection functions, such as:
1414
- Regex-based detections, with pre-written regexes for flagging various Personally Identifiable Information items like emails or phone numbers, as well as the ability to provide custom regexes
1515
- File-type validations, for verifying if model input/output is valid JSON, XML, or YAML
1616

@@ -19,10 +19,10 @@ At the moment, the following detectors are supported:
1919

2020
* `huggingface`: podman build -f detectors/Dockerfile.hf detectors
2121
* `llm_judge`: podman build -f detectors/Dockerfile.llm_judge detectors
22-
* `built_in`: podman build -f detectors/Dockerfile.builtIn detectors
22+
* `builtIn`: podman build -f detectors/Dockerfile.builtIn detectors
2323

2424
## Running locally
25-
* `built_in`: podman run -p 8080:8080 $BUILT_IN_IMAGE
25+
* `builtIn`: podman run -p 8080:8080 $BUILT_IN_IMAGE
2626

2727
### File Type Validation Example
2828
```bash

0 commit comments

Comments
 (0)