garrison-eval 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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
build/
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: garrison-eval
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for Garrison, Agile Defense's secure agentic AI platform. Placeholder release.
|
|
5
|
+
Project-URL: Repository, https://github.com/IntelliBridge/garrison
|
|
6
|
+
Author-email: Agile Defense <opensource@agiledefense.com>
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# garrison-eval
|
|
12
|
+
|
|
13
|
+
This name is reserved for **Garrison**, Agile Defense's open-source platform for
|
|
14
|
+
building secure AI agents for government missions — provider-agnostic model access,
|
|
15
|
+
composable guardrails, classification-aware data services, human-in-the-loop
|
|
16
|
+
orchestration, and production deployment tooling.
|
|
17
|
+
|
|
18
|
+
This is a placeholder release; the first functional release is coming soon.
|
|
19
|
+
|
|
20
|
+
- Repository: https://github.com/IntelliBridge/garrison
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# garrison-eval
|
|
2
|
+
|
|
3
|
+
This name is reserved for **Garrison**, Agile Defense's open-source platform for
|
|
4
|
+
building secure AI agents for government missions — provider-agnostic model access,
|
|
5
|
+
composable guardrails, classification-aware data services, human-in-the-loop
|
|
6
|
+
orchestration, and production deployment tooling.
|
|
7
|
+
|
|
8
|
+
This is a placeholder release; the first functional release is coming soon.
|
|
9
|
+
|
|
10
|
+
- Repository: https://github.com/IntelliBridge/garrison
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "garrison-eval"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Reserved for Garrison, Agile Defense's secure agentic AI platform. Placeholder release."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
authors = [{ name = "Agile Defense", email = "opensource@agiledefense.com" }]
|
|
8
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
9
|
+
|
|
10
|
+
[project.urls]
|
|
11
|
+
Repository = "https://github.com/IntelliBridge/garrison"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/garrison_eval"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Placeholder for Garrison (garrison-eval). First functional release coming soon."""
|