iterun 0.1.4__py3-none-any.whl
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.
- cli/__init__.py +20 -0
- cli/__main__.py +4 -0
- cli/main.py +911 -0
- dsl/__init__.py +17 -0
- dsl/schema.py +164 -0
- executor/__init__.py +3 -0
- executor/runner.py +614 -0
- generator/__init__.py +18 -0
- generator/intent_generator.py +232 -0
- generator/pipeline.py +95 -0
- ir/__init__.py +9 -0
- ir/models.py +223 -0
- iterun-0.1.4.dist-info/METADATA +431 -0
- iterun-0.1.4.dist-info/RECORD +28 -0
- iterun-0.1.4.dist-info/WHEEL +5 -0
- iterun-0.1.4.dist-info/entry_points.txt +3 -0
- iterun-0.1.4.dist-info/licenses/LICENSE +201 -0
- iterun-0.1.4.dist-info/top_level.txt +10 -0
- mcp/__init__.py +1 -0
- mcp/server.py +82 -0
- parser/__init__.py +3 -0
- parser/dsl_parser.py +263 -0
- planner/__init__.py +3 -0
- planner/simulator.py +348 -0
- sdk/__init__.py +5 -0
- sdk/client.py +119 -0
- web/__init__.py +3 -0
- web/app.py +523 -0
cli/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""ITERUN command-line interface."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
__all__ = ["CLI", "main"]
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from .main import CLI, main
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def __getattr__(name: str):
|
|
12
|
+
if name == "CLI":
|
|
13
|
+
from .main import CLI
|
|
14
|
+
|
|
15
|
+
return CLI
|
|
16
|
+
if name == "main":
|
|
17
|
+
from .main import main
|
|
18
|
+
|
|
19
|
+
return main
|
|
20
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
cli/__main__.py
ADDED