aiassay 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.
- aiassay-0.0.1/.gitignore +48 -0
- aiassay-0.0.1/PKG-INFO +30 -0
- aiassay-0.0.1/README.md +8 -0
- aiassay-0.0.1/pyproject.toml +29 -0
- aiassay-0.0.1/src/aiassay/__init__.py +4 -0
aiassay-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
*.so
|
|
7
|
+
*.egg
|
|
8
|
+
*.egg-info/
|
|
9
|
+
dist/
|
|
10
|
+
build/
|
|
11
|
+
.eggs/
|
|
12
|
+
installer_output/
|
|
13
|
+
|
|
14
|
+
# Virtual environments
|
|
15
|
+
.venv/
|
|
16
|
+
venv/
|
|
17
|
+
env/
|
|
18
|
+
|
|
19
|
+
# pytest / coverage
|
|
20
|
+
.pytest_cache/
|
|
21
|
+
.coverage
|
|
22
|
+
htmlcov/
|
|
23
|
+
.tox/
|
|
24
|
+
|
|
25
|
+
# Secrets / credentials
|
|
26
|
+
.env
|
|
27
|
+
*.env
|
|
28
|
+
.secret_key
|
|
29
|
+
configs/targets/*.yaml
|
|
30
|
+
|
|
31
|
+
# Run artifacts (potentially sensitive findings)
|
|
32
|
+
runs/
|
|
33
|
+
|
|
34
|
+
# Auto-generated threat intel stubs (review before committing manually)
|
|
35
|
+
scenarios/auto/
|
|
36
|
+
|
|
37
|
+
# IDE
|
|
38
|
+
.vscode/
|
|
39
|
+
.idea/
|
|
40
|
+
*.swp
|
|
41
|
+
*.swo
|
|
42
|
+
|
|
43
|
+
# OS
|
|
44
|
+
Thumbs.db
|
|
45
|
+
.DS_Store
|
|
46
|
+
|
|
47
|
+
# Egg info (editable install)
|
|
48
|
+
operon_assurance_engine.egg-info/
|
aiassay-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aiassay
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AIAssay — The touchstone of AI systems.
|
|
5
|
+
Project-URL: Homepage, https://kolektif360.com
|
|
6
|
+
Project-URL: Repository, https://github.com/muratturan19/aiassay
|
|
7
|
+
Author-email: Kolektif360 <info@kolektif360.com>
|
|
8
|
+
License: Proprietary
|
|
9
|
+
Keywords: ai,ai-testing,assurance,llm,llm-security,owasp,red-team
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
|
+
Classifier: Topic :: Software Development :: Testing
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# AIAssay
|
|
24
|
+
|
|
25
|
+
**The touchstone of AI systems.**
|
|
26
|
+
|
|
27
|
+
AIAssay is a commercial AI assurance platform by [Kolektif360](https://kolektif360.com).
|
|
28
|
+
|
|
29
|
+
> This PyPI package is a name reservation. The full product is distributed as a
|
|
30
|
+
> Windows installer. See [kolektif360.com](https://kolektif360.com) for access.
|
aiassay-0.0.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# AIAssay
|
|
2
|
+
|
|
3
|
+
**The touchstone of AI systems.**
|
|
4
|
+
|
|
5
|
+
AIAssay is a commercial AI assurance platform by [Kolektif360](https://kolektif360.com).
|
|
6
|
+
|
|
7
|
+
> This PyPI package is a name reservation. The full product is distributed as a
|
|
8
|
+
> Windows installer. See [kolektif360.com](https://kolektif360.com) for access.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aiassay"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "AIAssay — The touchstone of AI systems."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Proprietary"}
|
|
11
|
+
authors = [{name = "Kolektif360", email = "info@kolektif360.com"}]
|
|
12
|
+
keywords = ["ai", "assurance", "llm", "llm-security", "ai-testing", "red-team", "owasp"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Intended Audience :: Science/Research",
|
|
17
|
+
"Topic :: Software Development :: Testing",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: 3.13",
|
|
23
|
+
"Operating System :: Microsoft :: Windows",
|
|
24
|
+
]
|
|
25
|
+
requires-python = ">=3.11"
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://kolektif360.com"
|
|
29
|
+
Repository = "https://github.com/muratturan19/aiassay"
|