guardrailprobe 0.1.0__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.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: guardrailprobe
3
+ Version: 0.1.0
4
+ Summary: Provider-agnostic AI guardrail testing framework. OWASP LLM Top 10 probe library.
5
+ Project-URL: Homepage, https://github.com/askuma/guardrailprobe
6
+ Author-email: Ashutosh Kumar <your@email.com>
7
+ License: Apache-2.0
8
+ Keywords: ai-safety,guardrails,llm,owasp,red-team,security
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Security
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # guardrailprobe
18
+
19
+ Provider-agnostic AI guardrail testing framework.
20
+ Tests your guardrail layer — not your model — across
21
+ multiple backends against OWASP LLM Top 10.
22
+
23
+ Full release coming soon. Star the repo to follow progress:
24
+ https://github.com/askuma/guardrailprobe
@@ -0,0 +1,8 @@
1
+ # guardrailprobe
2
+
3
+ Provider-agnostic AI guardrail testing framework.
4
+ Tests your guardrail layer — not your model — across
5
+ multiple backends against OWASP LLM Top 10.
6
+
7
+ Full release coming soon. Star the repo to follow progress:
8
+ https://github.com/askuma/guardrailprobe
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "guardrailprobe"
7
+ version = "0.1.0"
8
+ description = "Provider-agnostic AI guardrail testing framework. OWASP LLM Top 10 probe library."
9
+ readme = "README.md"
10
+ license = { text = "Apache-2.0" }
11
+ authors = [
12
+ { name = "Ashutosh Kumar", email = "your@email.com" }
13
+ ]
14
+ keywords = ["guardrails", "llm", "security", "red-team", "owasp", "ai-safety"]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Developers",
18
+ "Topic :: Security",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3",
21
+ ]
22
+ requires-python = ">=3.9"
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/askuma/guardrailprobe"
@@ -0,0 +1,6 @@
1
+ """
2
+ guardrailprobe — Provider-agnostic AI guardrail testing.
3
+ OWASP LLM Top 10 probe library across NeMo, Presidio,
4
+ Lakera, GuardrailsAI and more.
5
+ """
6
+ __version__ = "0.1.0"