atomicguard 2.0.0__tar.gz → 2.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.
- {atomicguard-2.0.0/src/atomicguard.egg-info → atomicguard-2.1.0}/PKG-INFO +6 -1
- {atomicguard-2.0.0 → atomicguard-2.1.0}/pyproject.toml +9 -2
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/__init__.py +1 -1
- {atomicguard-2.0.0 → atomicguard-2.1.0/src/atomicguard.egg-info}/PKG-INFO +6 -1
- atomicguard-2.1.0/src/atomicguard.egg-info/requires.txt +10 -0
- atomicguard-2.0.0/src/atomicguard.egg-info/requires.txt +0 -4
- {atomicguard-2.0.0 → atomicguard-2.1.0}/LICENSE +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/README.md +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/setup.cfg +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/action_pair.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/agent.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/checkpoint_service.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/resume_service.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/application/workflow.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/exceptions.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/extraction.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/interfaces.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/models.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/multiagent.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/prompts.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/domain/workflow.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/composite/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/composite/base.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/dynamic/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/dynamic/test_runner.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/interactive/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/interactive/human.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/static/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/static/imports.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/guards/static/syntax.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/llm/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/llm/huggingface.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/llm/mock.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/llm/ollama.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/checkpoint.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/filesystem.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/memory.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/registry.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/schemas/__init__.py +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard.egg-info/SOURCES.txt +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard.egg-info/dependency_links.txt +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard.egg-info/entry_points.txt +0 -0
- {atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: atomicguard
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: A Dual-State Agent Framework for reliable LLM code generation with guard-validated loops
|
|
5
5
|
Author-email: Matthew Thompson <thompsonson@gmail.com>
|
|
6
6
|
Maintainer-email: Matthew Thompson <thompsonson@gmail.com>
|
|
@@ -30,6 +30,11 @@ Requires-Dist: matplotlib>=3.10.0
|
|
|
30
30
|
Requires-Dist: openhands-ai>=0.27.0
|
|
31
31
|
Requires-Dist: pydantic-ai>=1.0.0
|
|
32
32
|
Requires-Dist: pytestarch>=4.0.1
|
|
33
|
+
Provides-Extra: experiment
|
|
34
|
+
Requires-Dist: datasets>=2.0.0; extra == "experiment"
|
|
35
|
+
Requires-Dist: huggingface_hub>=0.20; extra == "experiment"
|
|
36
|
+
Requires-Dist: swebench>=2.0.0; extra == "experiment"
|
|
37
|
+
Requires-Dist: docker>=7.0.0; extra == "experiment"
|
|
33
38
|
Dynamic: license-file
|
|
34
39
|
|
|
35
40
|
# AtomicGuard
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "atomicguard"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.1.0"
|
|
4
4
|
description = "A Dual-State Agent Framework for reliable LLM code generation with guard-validated loops"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -54,8 +54,15 @@ OllamaGenerator = "atomicguard.infrastructure.llm:OllamaGenerator"
|
|
|
54
54
|
HuggingFaceGenerator = "atomicguard.infrastructure.llm:HuggingFaceGenerator"
|
|
55
55
|
MockGenerator = "atomicguard.infrastructure.llm:MockGenerator"
|
|
56
56
|
|
|
57
|
+
[project.optional-dependencies]
|
|
58
|
+
experiment = [
|
|
59
|
+
"datasets>=2.0.0",
|
|
60
|
+
"huggingface_hub>=0.20",
|
|
61
|
+
"swebench>=2.0.0",
|
|
62
|
+
"docker>=7.0.0",
|
|
63
|
+
]
|
|
64
|
+
|
|
57
65
|
# Note: Dev dependencies are in [dependency-groups] below, not here.
|
|
58
|
-
# [project.optional-dependencies] is for end-user extras only.
|
|
59
66
|
|
|
60
67
|
[build-system]
|
|
61
68
|
requires = ["setuptools>=75.0.0", "wheel"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: atomicguard
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: A Dual-State Agent Framework for reliable LLM code generation with guard-validated loops
|
|
5
5
|
Author-email: Matthew Thompson <thompsonson@gmail.com>
|
|
6
6
|
Maintainer-email: Matthew Thompson <thompsonson@gmail.com>
|
|
@@ -30,6 +30,11 @@ Requires-Dist: matplotlib>=3.10.0
|
|
|
30
30
|
Requires-Dist: openhands-ai>=0.27.0
|
|
31
31
|
Requires-Dist: pydantic-ai>=1.0.0
|
|
32
32
|
Requires-Dist: pytestarch>=4.0.1
|
|
33
|
+
Provides-Extra: experiment
|
|
34
|
+
Requires-Dist: datasets>=2.0.0; extra == "experiment"
|
|
35
|
+
Requires-Dist: huggingface_hub>=0.20; extra == "experiment"
|
|
36
|
+
Requires-Dist: swebench>=2.0.0; extra == "experiment"
|
|
37
|
+
Requires-Dist: docker>=7.0.0; extra == "experiment"
|
|
33
38
|
Dynamic: license-file
|
|
34
39
|
|
|
35
40
|
# AtomicGuard
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/__init__.py
RENAMED
|
File without changes
|
{atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/checkpoint.py
RENAMED
|
File without changes
|
{atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/filesystem.py
RENAMED
|
File without changes
|
{atomicguard-2.0.0 → atomicguard-2.1.0}/src/atomicguard/infrastructure/persistence/memory.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|