Upload folder using huggingface_hub
Browse files- .gitattributes +4 -0
- qualifire/prompt-injection-sentinel/README.md +41 -0
- qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-apple-darwin.encoderfile +3 -0
- qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-linux-gnu.encoderfile +3 -0
- qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-apple-darwin.encoderfile +3 -0
- qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-linux-gnu.encoderfile +3 -0
.gitattributes
CHANGED
|
@@ -67,3 +67,7 @@ protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v
|
|
| 67 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.aarch64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 68 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.x86_64-apple-darwin.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 69 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.x86_64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.aarch64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 68 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.x86_64-apple-darwin.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 69 |
protectai/deberta-v3-base-prompt-injection-v2/deberta-v3-base-prompt-injection-v2.x86_64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-apple-darwin.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-apple-darwin.encoderfile filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-linux-gnu.encoderfile filter=lfs diff=lfs merge=lfs -text
|
qualifire/prompt-injection-sentinel/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# `qualifire/prompt-injection-sentinel` Encoderfiles
|
| 2 |
+
|
| 3 |
+
**Generated with [Encoderfile](https://github.com/mozilla-ai/encoderfile) Encoderfile 0.5.1**
|
| 4 |
+
|
| 5 |
+
Pre-built encoderfiles for [`qualifire/prompt-injection-sentinel`](https://huggingface.co/qualifire/prompt-injection-sentinel) — self-contained, executable embedding servers you can run without any Python or ML dependencies.
|
| 6 |
+
|
| 7 |
+
## Download
|
| 8 |
+
|
| 9 |
+
Pick the binary for your platform:
|
| 10 |
+
|
| 11 |
+
| Platform | File |
|
| 12 |
+
|---|---|
|
| 13 |
+
| macOS (Apple Silicon) | `prompt-injection-sentinel.aarch64-apple-darwin.encoderfile` |
|
| 14 |
+
| macOS (Intel) | `prompt-injection-sentinel.x86_64-apple-darwin.encoderfile` |
|
| 15 |
+
| Linux (x86_64) | `prompt-injection-sentinel.x86_64-linux-gnu.encoderfile` |
|
| 16 |
+
| Linux (ARM64) | `prompt-injection-sentinel.aarch64-linux-gnu.encoderfile` |
|
| 17 |
+
|
| 18 |
+
Or download directly (example for macOS Apple Silicon):
|
| 19 |
+
|
| 20 |
+
```bash
|
| 21 |
+
wget https://huggingface.co/mozilla-ai/encoderfile/blob/main/qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-apple-darwin.encoderfile
|
| 22 |
+
chmod +x ./prompt-injection-sentinel.aarch64-apple-darwin.encoderfile
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
**Run as an embedding server:**
|
| 28 |
+
```bash
|
| 29 |
+
./prompt-injection-sentinel.aarch64-apple-darwin.encoderfile serve
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
**Infer directly from the CLI:**
|
| 33 |
+
```bash
|
| 34 |
+
./prompt-injection-sentinel.aarch64-apple-darwin.encoderfile infer "this is a test"
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## About Encoderfile
|
| 38 |
+
|
| 39 |
+
Encoderfiles are self-contained executables that bundle a model and its runtime into a single binary. No Python, no dependencies — just download and run.
|
| 40 |
+
|
| 41 |
+
Learn more at [mozilla-ai/encoderfile](https://github.com/mozilla-ai/encoderfile).
|
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-apple-darwin.encoderfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8ebd4da6e28f75b364d87294a9e38c77a0bbb710b49d8a155cc94566ad4c03b
|
| 3 |
+
size 1627076859
|
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.aarch64-linux-gnu.encoderfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:142cbfd3eee02fda6bd2b43d8d42263206400b5793b4f52fa42053915b2bb9cc
|
| 3 |
+
size 1631409267
|
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-apple-darwin.encoderfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b41eaa4537af033ca289ab2cdd4a915aa2ac3c4321e0a0b8d6a9fae43dbc0c34
|
| 3 |
+
size 1631881807
|
qualifire/prompt-injection-sentinel/prompt-injection-sentinel.x86_64-linux-gnu.encoderfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cb423134e2fb291ba98721a6269b7d946747aebc3f60a384a08685798454b3c
|
| 3 |
+
size 1636718371
|