redprobe 0.1.0__tar.gz → 0.1.1__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.
Files changed (32) hide show
  1. {redprobe-0.1.0 → redprobe-0.1.1}/PKG-INFO +1 -4
  2. {redprobe-0.1.0 → redprobe-0.1.1}/pyproject.toml +1 -6
  3. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/PKG-INFO +1 -4
  4. {redprobe-0.1.0 → redprobe-0.1.1}/CONTRIBUTING.md +0 -0
  5. {redprobe-0.1.0 → redprobe-0.1.1}/HISTORY.md +0 -0
  6. {redprobe-0.1.0 → redprobe-0.1.1}/LICENSE +0 -0
  7. {redprobe-0.1.0 → redprobe-0.1.1}/MANIFEST.in +0 -0
  8. {redprobe-0.1.0 → redprobe-0.1.1}/README.md +0 -0
  9. {redprobe-0.1.0 → redprobe-0.1.1}/docs/index.md +0 -0
  10. {redprobe-0.1.0 → redprobe-0.1.1}/docs/installation.md +0 -0
  11. {redprobe-0.1.0 → redprobe-0.1.1}/docs/usage.md +0 -0
  12. {redprobe-0.1.0 → redprobe-0.1.1}/setup.cfg +0 -0
  13. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/__init__.py +0 -0
  14. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/__main__.py +0 -0
  15. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/cli.py +0 -0
  16. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/client.py +0 -0
  17. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/consent.py +0 -0
  18. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/probes.py +0 -0
  19. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/redprobe.py +0 -0
  20. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/reporter.py +0 -0
  21. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/runner.py +0 -0
  22. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe/utils.py +0 -0
  23. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/SOURCES.txt +0 -0
  24. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/dependency_links.txt +0 -0
  25. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/entry_points.txt +0 -0
  26. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/requires.txt +0 -0
  27. {redprobe-0.1.0 → redprobe-0.1.1}/src/redprobe.egg-info/top_level.txt +0 -0
  28. {redprobe-0.1.0 → redprobe-0.1.1}/tests/__init__.py +0 -0
  29. {redprobe-0.1.0 → redprobe-0.1.1}/tests/test_cli.py +0 -0
  30. {redprobe-0.1.0 → redprobe-0.1.1}/tests/test_probes.py +0 -0
  31. {redprobe-0.1.0 → redprobe-0.1.1}/tests/test_redprobe.py +0 -0
  32. {redprobe-0.1.0 → redprobe-0.1.1}/tests/test_runner.py +0 -0
@@ -1,13 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: redprobe
3
- Version: 0.1.0
3
+ Version: 0.1.1
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>
7
7
  License: BUSL 1.1
8
- Project-URL: bugs, https://github.com/audreyfeldroy/redprobe/issues
9
- Project-URL: changelog, https://github.com/audreyfeldroy/redprobe/blob/master/changelog.md
10
- Project-URL: homepage, https://github.com/audreyfeldroy/redprobe
11
8
  Requires-Python: >=3.10
12
9
  Description-Content-Type: text/markdown
13
10
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "redprobe"
3
- version = "0.1.0"
3
+ version = "0.1.1"
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 = [
@@ -30,11 +30,6 @@ test = [
30
30
  "ipdb", # debugging
31
31
  ]
32
32
 
33
- [project.urls]
34
- bugs = "https://github.com/audreyfeldroy/redprobe/issues"
35
- changelog = "https://github.com/audreyfeldroy/redprobe/blob/master/changelog.md"
36
- homepage = "https://github.com/audreyfeldroy/redprobe"
37
-
38
33
  [project.scripts]
39
34
  redprobe = "redprobe.cli:app"
40
35
 
@@ -1,13 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: redprobe
3
- Version: 0.1.0
3
+ Version: 0.1.1
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>
7
7
  License: BUSL 1.1
8
- Project-URL: bugs, https://github.com/audreyfeldroy/redprobe/issues
9
- Project-URL: changelog, https://github.com/audreyfeldroy/redprobe/blob/master/changelog.md
10
- Project-URL: homepage, https://github.com/audreyfeldroy/redprobe
11
8
  Requires-Python: >=3.10
12
9
  Description-Content-Type: text/markdown
13
10
  License-File: LICENSE
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