model-compose 0.0.1__tar.gz → 0.0.2__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.
- {model_compose-0.0.1/src/model_compose.egg-info → model_compose-0.0.2}/PKG-INFO +2 -2
- {model_compose-0.0.1 → model_compose-0.0.2}/pyproject.toml +2 -2
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/main.py +3 -3
- model_compose-0.0.2/src/mindor/core/controller.py +5 -0
- {model_compose-0.0.1 → model_compose-0.0.2/src/model_compose.egg-info}/PKG-INFO +2 -2
- model_compose-0.0.1/src/mindor/core/controller.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/LICENSE +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/README.md +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/setup.cfg +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/__init__.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/__init__.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/commands/__init__.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/commands/down.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/commands/run.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/cli/commands/up.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/core/__init__.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/core/model.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/core/workflow.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/dsl/__init__.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/dsl/loader.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/mindor/dsl/parser.py +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/model_compose.egg-info/SOURCES.txt +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/model_compose.egg-info/dependency_links.txt +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/model_compose.egg-info/entry_points.txt +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/model_compose.egg-info/requires.txt +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/src/model_compose.egg-info/top_level.txt +0 -0
- {model_compose-0.0.1 → model_compose-0.0.2}/tests/test_cli.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: model-compose
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: model-compose: Declarative AI Model and Workflow Orchestrator (from Mindor)
|
|
5
5
|
Author-email: Hanyeol Cho <hanyeol.cho@gmail.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/hanyeol/model-compose
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "model-compose"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.2"
|
|
4
4
|
description = "model-compose: Declarative AI Model and Workflow Orchestrator (from Mindor)"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Hanyeol Cho", email = "hanyeol.cho@gmail.com" }
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
|
-
license =
|
|
9
|
+
license = "MIT"
|
|
10
10
|
dependencies = ["click", "pyyaml", "pydantic", "python-dotenv", "jinja2"]
|
|
11
11
|
|
|
12
12
|
[project.scripts]
|
|
@@ -3,13 +3,13 @@ import click
|
|
|
3
3
|
|
|
4
4
|
from .commands.up import up_command
|
|
5
5
|
from .commands.down import down_command
|
|
6
|
-
from .commands.
|
|
6
|
+
from .commands.run import run_command
|
|
7
7
|
|
|
8
8
|
@click.group()
|
|
9
9
|
def app():
|
|
10
|
-
"""
|
|
10
|
+
"""model-compose (from Mindor)"""
|
|
11
11
|
pass
|
|
12
12
|
|
|
13
13
|
app.add_command(up_command)
|
|
14
14
|
app.add_command(down_command)
|
|
15
|
-
app.add_command(
|
|
15
|
+
app.add_command(run_command)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: model-compose
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: model-compose: Declarative AI Model and Workflow Orchestrator (from Mindor)
|
|
5
5
|
Author-email: Hanyeol Cho <hanyeol.cho@gmail.com>
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/hanyeol/model-compose
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
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
|