diagram-to-iac 0.4.0__tar.gz → 0.6.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.
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/PKG-INFO +1 -1
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/pyproject.toml +1 -1
- diagram_to_iac-0.6.0/src/diagram_to_iac/r2d.py +13 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/tools/sec_utils.py +1 -1
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/PKG-INFO +1 -1
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/SOURCES.txt +2 -0
- diagram_to_iac-0.6.0/tests/test_vision.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/README.md +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/setup.cfg +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/__init__.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/agents/__init__.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/agents/codegen_agent.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/agents/consensus_agent.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/agents/github_agent.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/deployment_agent.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/agents/interpretation_agent.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/github_agent.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/agents/question_agent.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/interpretation_agent.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/agents/supervisor.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/question_agent.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/agents/vision_agent.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/supervisor.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/core/__init__.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/agents/vision_agent.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/cli.py +0 -0
- {diagram_to_iac-0.4.0/src/diagram_to_iac/tools → diagram_to_iac-0.6.0/src/diagram_to_iac/core}/__init__.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/core/agent_base.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/core/config.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/core/memory.py +0 -0
- {diagram_to_iac-0.4.0/src/diagram_to_iac/tools/llm_utils → diagram_to_iac-0.6.0/src/diagram_to_iac/tools}/__init__.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/tools/api_utils.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/tools/cv_utils.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac/tools/gh_utils.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/tools/llm_utils/anthropic_driver.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/llm_utils/__init__.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/tools/llm_utils/gemini_driver.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/llm_utils/anthropic_driver.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/tools/llm_utils/openai_driver.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/llm_utils/gemini_driver.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/tools/llm_utils/router.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/llm_utils/openai_driver.py +0 -0
- /diagram_to_iac-0.4.0/src/diagram_to_iac/tools/tf_utils.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/llm_utils/router.py +0 -0
- /diagram_to_iac-0.4.0/tests/test_aiapi_connection.py → /diagram_to_iac-0.6.0/src/diagram_to_iac/tools/tf_utils.py +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/dependency_links.txt +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/entry_points.txt +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/requires.txt +0 -0
- {diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/top_level.txt +0 -0
- /diagram_to_iac-0.4.0/tests/test_codegen.py → /diagram_to_iac-0.6.0/tests/test_aiapi_connection.py +0 -0
- /diagram_to_iac-0.4.0/tests/test_consensus.py → /diagram_to_iac-0.6.0/tests/test_codegen.py +0 -0
- /diagram_to_iac-0.4.0/tests/test_end_to_end.py → /diagram_to_iac-0.6.0/tests/test_consensus.py +0 -0
- /diagram_to_iac-0.4.0/tests/test_interpretation.py → /diagram_to_iac-0.6.0/tests/test_end_to_end.py +0 -0
- /diagram_to_iac-0.4.0/tests/test_vision.py → /diagram_to_iac-0.6.0/tests/test_interpretation.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "diagram-to-iac"
|
7
|
-
version = "0.
|
7
|
+
version = "0.6.0"
|
8
8
|
description = "Convert architecture diagrams into IaC modules"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [{ name="vindpro", email="admin@vindpro.com" }]
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# src/diagram_to_iac/r2d.py
|
2
|
+
|
3
|
+
import sys, json
|
4
|
+
import requests # external package, so pipreqs must pick it up
|
5
|
+
|
6
|
+
def main():
|
7
|
+
# a sanity check that our imports actually work:
|
8
|
+
print("✅ diagram-to-iac CLI is up and running!")
|
9
|
+
print("• requests version:", requests.__version__)
|
10
|
+
# verify stdlib too
|
11
|
+
data = {"ok": True}
|
12
|
+
print("• json dump:", json.dumps(data))
|
13
|
+
sys.exit(0)
|
@@ -2,6 +2,7 @@ README.md
|
|
2
2
|
pyproject.toml
|
3
3
|
src/diagram_to_iac/__init__.py
|
4
4
|
src/diagram_to_iac/cli.py
|
5
|
+
src/diagram_to_iac/r2d.py
|
5
6
|
src/diagram_to_iac.egg-info/PKG-INFO
|
6
7
|
src/diagram_to_iac.egg-info/SOURCES.txt
|
7
8
|
src/diagram_to_iac.egg-info/dependency_links.txt
|
@@ -11,6 +12,7 @@ src/diagram_to_iac.egg-info/top_level.txt
|
|
11
12
|
src/diagram_to_iac/agents/__init__.py
|
12
13
|
src/diagram_to_iac/agents/codegen_agent.py
|
13
14
|
src/diagram_to_iac/agents/consensus_agent.py
|
15
|
+
src/diagram_to_iac/agents/deployment_agent.py
|
14
16
|
src/diagram_to_iac/agents/github_agent.py
|
15
17
|
src/diagram_to_iac/agents/interpretation_agent.py
|
16
18
|
src/diagram_to_iac/agents/question_agent.py
|
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
|
{diagram_to_iac-0.4.0 → diagram_to_iac-0.6.0}/src/diagram_to_iac.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/diagram_to_iac-0.4.0/tests/test_codegen.py → /diagram_to_iac-0.6.0/tests/test_aiapi_connection.py
RENAMED
File without changes
|
File without changes
|
/diagram_to_iac-0.4.0/tests/test_end_to_end.py → /diagram_to_iac-0.6.0/tests/test_consensus.py
RENAMED
File without changes
|
/diagram_to_iac-0.4.0/tests/test_interpretation.py → /diagram_to_iac-0.6.0/tests/test_end_to_end.py
RENAMED
File without changes
|
/diagram_to_iac-0.4.0/tests/test_vision.py → /diagram_to_iac-0.6.0/tests/test_interpretation.py
RENAMED
File without changes
|