model-compose 0.0.1__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.
mindor/__init__.py ADDED
File without changes
mindor/cli/__init__.py ADDED
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+
2
+ import click
3
+
4
+ @click.command(name="down")
5
+ def down_command():
6
+ click.echo("πŸš€ Pipeline is now running in background (stub).")
@@ -0,0 +1,9 @@
1
+
2
+ import click
3
+ from mindor.core.workflow import run_workflow
4
+
5
+ @click.command(name="run")
6
+ @click.option('--input', help='Text input for the pipeline.')
7
+ def run_command(input):
8
+ result = run_workflow(input)
9
+ click.echo(f"🧠 Output: {result}")
@@ -0,0 +1,6 @@
1
+
2
+ import click
3
+
4
+ @click.command(name="up")
5
+ def up_command():
6
+ click.echo("πŸš€ Pipeline is now running in background (stub).")
mindor/cli/main.py ADDED
@@ -0,0 +1,15 @@
1
+
2
+ import click
3
+
4
+ from .commands.up import up_command
5
+ from .commands.down import down_command
6
+ from .commands.exec import exec_command
7
+
8
+ @click.group()
9
+ def app():
10
+ """Mindor CLI (model-compose)"""
11
+ pass
12
+
13
+ app.add_command(up_command)
14
+ app.add_command(down_command)
15
+ app.add_command(exec_command)
File without changes
File without changes
mindor/core/model.py ADDED
File without changes
@@ -0,0 +1,4 @@
1
+
2
+ def run_workflow(user_input):
3
+ # μ—¬κΈ°μ„œ YAML λ‘œλ”©, λͺ¨λΈ μ‹€ν–‰ λ“±μ˜ 둜직이 λ“€μ–΄κ°ˆ 수 있음
4
+ return f"Processed in core.workflow: {user_input}"
mindor/dsl/__init__.py ADDED
File without changes
mindor/dsl/loader.py ADDED
File without changes
mindor/dsl/parser.py ADDED
File without changes
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: model-compose
3
+ Version: 0.0.1
4
+ Summary: model-compose: Declarative AI Model and Workflow Orchestrator (from Mindor)
5
+ Author-email: Hanyeol Cho <hanyeol.cho@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/hanyeol/model-compose
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: click
11
+ Requires-Dist: pyyaml
12
+ Requires-Dist: pydantic
13
+ Requires-Dist: python-dotenv
14
+ Requires-Dist: jinja2
15
+ Dynamic: license-file
16
+
17
+ # model-compose: Declarative AI Model and Workflow Orchestrator (from Mindor)
@@ -0,0 +1,20 @@
1
+ mindor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ mindor/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ mindor/cli/main.py,sha256=tfBhCyjt4ghRGWR5_mjWKrNy-7VTVwlC-w7-fQt7y3k,293
4
+ mindor/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ mindor/cli/commands/down.py,sha256=pIfhuhwQfN4-HvGGYPQkS-xa22qabpPS9cj85pCS3jw,132
6
+ mindor/cli/commands/run.py,sha256=IvHD_nUBjMa1ZDtRxknE1c1x_hwwFrB-y-XwGeHY3qQ,248
7
+ mindor/cli/commands/up.py,sha256=gElT6GcUrNiZTxpNClo63wIBXPMJQN48PFy74x-19uw,128
8
+ mindor/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ mindor/core/controller.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ mindor/core/model.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mindor/core/workflow.py,sha256=Q0KbJ4vQkQdJlvKMFdwsy-27LPqlDcLaRnhVIm8zwG8,167
12
+ mindor/dsl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ mindor/dsl/loader.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ mindor/dsl/parser.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ model_compose-0.0.1.dist-info/licenses/LICENSE,sha256=GWvPRaP-JcVPYyxrB0_68z5griiyQ3ybpjrRhguAGQo,1068
16
+ model_compose-0.0.1.dist-info/METADATA,sha256=0wQIItBCbIo4A-uH3IP2sTKgsKmpmLqUSi5oPV9WbqM,550
17
+ model_compose-0.0.1.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
18
+ model_compose-0.0.1.dist-info/entry_points.txt,sha256=3i2zcuxpOi_54zLuQBuw8-Nl5CvTRUm2DsMNKk9e_oE,54
19
+ model_compose-0.0.1.dist-info/top_level.txt,sha256=kGMNxWbv_lWCSoZMbaBtyzE5qyTebiAk2qWbIvx5KYs,7
20
+ model_compose-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ model-compose = mindor.cli.main:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Hanyeol Cho
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ mindor