atbash-hermes-plugin 0.1.7__tar.gz → 0.1.7.dev0__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.
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/PKG-INFO +5 -4
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/README.md +2 -2
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin/__init__.py +1 -1
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/PKG-INFO +5 -4
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/requires.txt +2 -1
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/pyproject.toml +3 -2
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/LICENSE +0 -0
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/SOURCES.txt +0 -0
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/dependency_links.txt +0 -0
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/entry_points.txt +0 -0
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin.egg-info/top_level.txt +0 -0
- {atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: atbash-hermes-plugin
|
|
3
|
-
Version: 0.1.7
|
|
3
|
+
Version: 0.1.7.dev0
|
|
4
4
|
Summary: Atbash safety plugin for Hermes Agent
|
|
5
5
|
Author: atbash
|
|
6
6
|
License-Expression: LicenseRef-Atbash-Proprietary
|
|
@@ -10,7 +10,8 @@ Keywords: atbash,hermes,hermes-agent,agent-safety,ai-safety,tool-guard,judge,pol
|
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
|
-
Requires-Dist: atbash-sdk==0.1.7
|
|
13
|
+
Requires-Dist: atbash-sdk==0.1.7.dev0
|
|
14
|
+
Requires-Dist: httpx<1,>=0.27
|
|
14
15
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http<2,>=1.29
|
|
15
16
|
Requires-Dist: opentelemetry-sdk<2,>=1.29
|
|
16
17
|
Dynamic: license-file
|
|
@@ -37,13 +38,13 @@ stopped before execution.
|
|
|
37
38
|
Install the plugin into the same Python environment that runs Hermes:
|
|
38
39
|
|
|
39
40
|
```bash
|
|
40
|
-
pip install atbash-hermes-plugin==0.1.7
|
|
41
|
+
pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
41
42
|
```
|
|
42
43
|
|
|
43
44
|
If Hermes is installed in a virtual environment, use that environment's Python:
|
|
44
45
|
|
|
45
46
|
```bash
|
|
46
|
-
/path/to/hermes/venv/bin/python -m pip install atbash-hermes-plugin==0.1.7
|
|
47
|
+
/path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
47
48
|
```
|
|
48
49
|
|
|
49
50
|
## Configure Atbash
|
|
@@ -20,13 +20,13 @@ stopped before execution.
|
|
|
20
20
|
Install the plugin into the same Python environment that runs Hermes:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
pip install atbash-hermes-plugin==0.1.7
|
|
23
|
+
pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
If Hermes is installed in a virtual environment, use that environment's Python:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
/path/to/hermes/venv/bin/python -m pip install atbash-hermes-plugin==0.1.7
|
|
29
|
+
/path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Configure Atbash
|
{atbash_hermes_plugin-0.1.7 → atbash_hermes_plugin-0.1.7.dev0}/atbash_hermes_plugin/__init__.py
RENAMED
|
@@ -240,7 +240,7 @@ class AtbashHermesGuard:
|
|
|
240
240
|
from atbash import Atbash # type: ignore
|
|
241
241
|
from atbash.types import ToolCallInput # type: ignore
|
|
242
242
|
except Exception:
|
|
243
|
-
raise RuntimeError("atbash-sdk is required. Install with: pip install atbash-sdk==0.1.7") from e
|
|
243
|
+
raise RuntimeError("atbash-sdk is required. Install with: pip install atbash-sdk==0.1.7.dev0") from e
|
|
244
244
|
|
|
245
245
|
self.ToolCallInput = ToolCallInput
|
|
246
246
|
judge_cfg = self._judge_config()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: atbash-hermes-plugin
|
|
3
|
-
Version: 0.1.7
|
|
3
|
+
Version: 0.1.7.dev0
|
|
4
4
|
Summary: Atbash safety plugin for Hermes Agent
|
|
5
5
|
Author: atbash
|
|
6
6
|
License-Expression: LicenseRef-Atbash-Proprietary
|
|
@@ -10,7 +10,8 @@ Keywords: atbash,hermes,hermes-agent,agent-safety,ai-safety,tool-guard,judge,pol
|
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
|
-
Requires-Dist: atbash-sdk==0.1.7
|
|
13
|
+
Requires-Dist: atbash-sdk==0.1.7.dev0
|
|
14
|
+
Requires-Dist: httpx<1,>=0.27
|
|
14
15
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http<2,>=1.29
|
|
15
16
|
Requires-Dist: opentelemetry-sdk<2,>=1.29
|
|
16
17
|
Dynamic: license-file
|
|
@@ -37,13 +38,13 @@ stopped before execution.
|
|
|
37
38
|
Install the plugin into the same Python environment that runs Hermes:
|
|
38
39
|
|
|
39
40
|
```bash
|
|
40
|
-
pip install atbash-hermes-plugin==0.1.7
|
|
41
|
+
pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
41
42
|
```
|
|
42
43
|
|
|
43
44
|
If Hermes is installed in a virtual environment, use that environment's Python:
|
|
44
45
|
|
|
45
46
|
```bash
|
|
46
|
-
/path/to/hermes/venv/bin/python -m pip install atbash-hermes-plugin==0.1.7
|
|
47
|
+
/path/to/hermes/venv/bin/python -m pip install --pre atbash-hermes-plugin==0.1.7.dev0
|
|
47
48
|
```
|
|
48
49
|
|
|
49
50
|
## Configure Atbash
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "atbash-hermes-plugin"
|
|
7
|
-
version = "0.1.7"
|
|
7
|
+
version = "0.1.7.dev0"
|
|
8
8
|
description = "Atbash safety plugin for Hermes Agent"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -24,7 +24,8 @@ keywords = [
|
|
|
24
24
|
"policy"
|
|
25
25
|
]
|
|
26
26
|
dependencies = [
|
|
27
|
-
"atbash-sdk==0.1.7",
|
|
27
|
+
"atbash-sdk==0.1.7.dev0",
|
|
28
|
+
"httpx>=0.27,<1",
|
|
28
29
|
"opentelemetry-exporter-otlp-proto-http>=1.29,<2",
|
|
29
30
|
"opentelemetry-sdk>=1.29,<2",
|
|
30
31
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|