redprobe 0.1.2__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {redprobe-0.1.2 → redprobe-0.1.4}/PKG-INFO +6 -1
- {redprobe-0.1.2 → redprobe-0.1.4}/README.md +5 -0
- redprobe-0.1.4/docs/cli.png +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/pyproject.toml +1 -1
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/PKG-INFO +6 -1
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/SOURCES.txt +1 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/CONTRIBUTING.md +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/HISTORY.md +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/LICENSE +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/MANIFEST.in +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/docs/index.md +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/docs/installation.md +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/docs/usage.md +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/setup.cfg +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/__init__.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/__main__.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/cli.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/client.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/consent.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/probes.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/redprobe.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/reporter.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/runner.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe/utils.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/dependency_links.txt +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/entry_points.txt +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/requires.txt +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/src/redprobe.egg-info/top_level.txt +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/tests/__init__.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/tests/test_cli.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/tests/test_probes.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/tests/test_redprobe.py +0 -0
- {redprobe-0.1.2 → redprobe-0.1.4}/tests/test_runner.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redprobe
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint.
|
|
5
5
|
Author-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
|
|
6
6
|
Maintainer-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
|
|
@@ -24,6 +24,8 @@ Dynamic: license-file
|
|
|
24
24
|
|
|
25
25
|
A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
> **For authorized security testing only.** You must only test systems you own or have written permission to test. See [Responsible Use](#responsible-use) below.
|
|
28
30
|
|
|
29
31
|
## Quick Start
|
|
@@ -34,6 +36,9 @@ uvx redprobe init
|
|
|
34
36
|
|
|
35
37
|
# Run probes against a model
|
|
36
38
|
uvx redprobe run probes/
|
|
39
|
+
|
|
40
|
+
# Upgrade to latest version
|
|
41
|
+
uvx redprobe@latest
|
|
37
42
|
```
|
|
38
43
|
|
|
39
44
|
## Prerequisites
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
> **For authorized security testing only.** You must only test systems you own or have written permission to test. See [Responsible Use](#responsible-use) below.
|
|
6
8
|
|
|
7
9
|
## Quick Start
|
|
@@ -12,6 +14,9 @@ uvx redprobe init
|
|
|
12
14
|
|
|
13
15
|
# Run probes against a model
|
|
14
16
|
uvx redprobe run probes/
|
|
17
|
+
|
|
18
|
+
# Upgrade to latest version
|
|
19
|
+
uvx redprobe@latest
|
|
15
20
|
```
|
|
16
21
|
|
|
17
22
|
## Prerequisites
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "redprobe"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redprobe
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint.
|
|
5
5
|
Author-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
|
|
6
6
|
Maintainer-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
|
|
@@ -24,6 +24,8 @@ Dynamic: license-file
|
|
|
24
24
|
|
|
25
25
|
A defensive security tool for hardening AI systems. Define YAML-based test cases to systematically probe LLMs for jailbreaks, prompt injections, biases, harmful content generation, data leakage, and policy violations before attackers find them. Compatible with any OpenAI-style API endpoint.
|
|
26
26
|
|
|
27
|
+

|
|
28
|
+
|
|
27
29
|
> **For authorized security testing only.** You must only test systems you own or have written permission to test. See [Responsible Use](#responsible-use) below.
|
|
28
30
|
|
|
29
31
|
## Quick Start
|
|
@@ -34,6 +36,9 @@ uvx redprobe init
|
|
|
34
36
|
|
|
35
37
|
# Run probes against a model
|
|
36
38
|
uvx redprobe run probes/
|
|
39
|
+
|
|
40
|
+
# Upgrade to latest version
|
|
41
|
+
uvx redprobe@latest
|
|
37
42
|
```
|
|
38
43
|
|
|
39
44
|
## Prerequisites
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|