probitas 0.0.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.
- probitas-0.0.1/.gitignore +1 -0
- probitas-0.0.1/LICENSE +1 -0
- probitas-0.0.1/PKG-INFO +14 -0
- probitas-0.0.1/README.md +1 -0
- probitas-0.0.1/pyproject.toml +20 -0
- probitas-0.0.1/src/probitas/__init__.py +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vercel
|
probitas-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MIT
|
probitas-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: probitas
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Guardrail regression testing for LLM agent tool calls
|
|
5
|
+
Project-URL: Homepage, https://github.com/terry-li-hm/probitas
|
|
6
|
+
Project-URL: Repository, https://github.com/terry-li-hm/probitas
|
|
7
|
+
Author-email: Terry Li <terry.li.hm@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: agent,ai,ci-cd,compliance,guardrails,testing
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# probitas
|
probitas-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# probitas
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "probitas"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Guardrail regression testing for LLM agent tool calls"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
authors = [{ name = "Terry Li", email = "terry.li.hm@gmail.com" }]
|
|
9
|
+
keywords = ["ai", "agent", "guardrails", "testing", "ci-cd", "compliance"]
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Homepage = "https://github.com/terry-li-hm/probitas"
|
|
13
|
+
Repository = "https://github.com/terry-li-hm/probitas"
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/probitas"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""probitas — Guardrail regression testing for LLM agent tool calls."""
|