model-compose 0.3.4__tar.gz → 0.3.5__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.3.4/src/model_compose.egg-info → model_compose-0.3.5}/PKG-INFO +1 -1
- {model_compose-0.3.4 → model_compose-0.3.5}/pyproject.toml +1 -1
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/http_client.py +1 -1
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/base.py +6 -2
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/runtime/docker/docker.py +1 -1
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/services/async_service.py +23 -1
- model_compose-0.3.5/src/mindor/dsl/schema/action/impl/model/impl/common.py +18 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/summarization.py +2 -2
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/text_classification.py +2 -2
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/text_embedding.py +2 -2
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/text_generation.py +2 -2
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/translation.py +2 -2
- {model_compose-0.3.4 → model_compose-0.3.5/src/model_compose.egg-info}/PKG-INFO +1 -1
- model_compose-0.3.4/src/mindor/dsl/schema/action/impl/model/impl/common.py +0 -11
- {model_compose-0.3.4 → model_compose-0.3.5}/LICENSE +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/README.md +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/setup.cfg +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/cli/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/cli/compose.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/component.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/context.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/http_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/mcp_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/mcp_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/model.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/summarization.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/text_classification.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/text_embedding.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/text_generation.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/tasks/translation.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/shell.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/text_splitter.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/workflow.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/compose/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/compose/compose.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/compose/manager.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/controller.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/http_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/mcp_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/runner.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/docker/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/docker/context/Dockerfile +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/docker/docker.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/specs.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/services/http_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/services/mcp_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/webui/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/webui/gradio.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/webui/webui.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/gateway.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/services/http_tunnel.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/gateway/services/ssh_tunnel.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/listener.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/services/http_callback.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/logger.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/logging.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/services/console.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/logger/services/file.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/runtime/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/runtime/docker/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/runtime/env.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/services/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/caching.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/http_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/http_request.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/http_status.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/image.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/mcp_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/renderers.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/resolvers.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/ssh_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/streaming.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/time.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/utils/workqueue.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/context.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/base.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/action.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/delay.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/if_.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/random_router.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/switch.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/job.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/schema.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/workflow.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/loader.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/action.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/http_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/http_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/mcp_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/mcp_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/model.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/shell.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/text_splitter.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/workflow.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/component.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/http_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/http_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/mcp_client.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/mcp_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/summarization.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/text_classification.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/text_embedding.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/text_generation.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/translation.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/model.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/shell.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/text_splitter.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/workflow.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/compose.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/controller.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/http_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/mcp_server.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/dynamic.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/gradio.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/static.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/webui.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/gateway.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/ssh_tunnel.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/action.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/delay.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/if_.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/random_router.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/switch.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/job/job.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/impl/http_callback.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/listener.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/impl/console.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/impl/file.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/logger/logger.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/impl/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/impl/common.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/impl/docker.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/impl/native.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/impl/types.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/runtime/runtime.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/workflow.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/utils/__init__.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/utils/annotation.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/utils/enum.py +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/model_compose.egg-info/SOURCES.txt +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/model_compose.egg-info/dependency_links.txt +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/model_compose.egg-info/entry_points.txt +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/model_compose.egg-info/requires.txt +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/src/model_compose.egg-info/top_level.txt +0 -0
- {model_compose-0.3.4 → model_compose-0.3.5}/tests/test_cli.py +0 -0
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/http_client.py
RENAMED
|
@@ -62,7 +62,7 @@ class HttpClientPollingCompletion(HttpClientCompletion):
|
|
|
62
62
|
class HttpClientCallbackCompletion(HttpClientCompletion):
|
|
63
63
|
async def run(self, context: ComponentActionContext, client: HttpClient) -> Any:
|
|
64
64
|
callback_id = await context.render_variable(self.config.wait_for)
|
|
65
|
-
future: asyncio.Future = asyncio.
|
|
65
|
+
future: asyncio.Future = asyncio.get_running_loop().create_future()
|
|
66
66
|
HttpCallbackListener.register_pending_future(callback_id, future)
|
|
67
67
|
|
|
68
68
|
return await future
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/base.py
RENAMED
|
@@ -5,7 +5,8 @@ from mindor.dsl.schema.action import ModelActionConfig
|
|
|
5
5
|
from mindor.core.services import AsyncService
|
|
6
6
|
from ...context import ComponentActionContext
|
|
7
7
|
from transformers import PreTrainedModel, PreTrainedTokenizer
|
|
8
|
-
import
|
|
8
|
+
from threading import Thread
|
|
9
|
+
import torch, asyncio
|
|
9
10
|
|
|
10
11
|
class ModelTaskService(AsyncService):
|
|
11
12
|
def __init__(self, id: str, config: ModelComponentConfig, daemon: bool):
|
|
@@ -15,7 +16,10 @@ class ModelTaskService(AsyncService):
|
|
|
15
16
|
self.config: ModelComponentConfig = config
|
|
16
17
|
|
|
17
18
|
async def run(self, action: ModelActionConfig, context: ComponentActionContext) -> Any:
|
|
18
|
-
|
|
19
|
+
async def _run():
|
|
20
|
+
return await self._run(action, context)
|
|
21
|
+
|
|
22
|
+
return await self.run_in_thread(_run)
|
|
19
23
|
|
|
20
24
|
@abstractmethod
|
|
21
25
|
async def _run(self, action: ModelActionConfig, context: ComponentActionContext) -> Any:
|
|
@@ -246,7 +246,7 @@ class DockerRuntimeManager:
|
|
|
246
246
|
for line in container.logs(stream=True, follow=True, since=int(time.time())):
|
|
247
247
|
sys.stdout.buffer.write(line)
|
|
248
248
|
sys.stdout.flush()
|
|
249
|
-
loop = asyncio.
|
|
249
|
+
loop = asyncio.get_running_loop()
|
|
250
250
|
await loop.run_in_executor(None, _stream_logs_sync, container)
|
|
251
251
|
except Exception as e:
|
|
252
252
|
logging.error("Error while streaming logs from container '%s': %s", container.name, e)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import Optional
|
|
1
|
+
from typing import Optional, Callable, Awaitable, Any
|
|
2
2
|
from abc import ABC, abstractmethod
|
|
3
3
|
from threading import Thread
|
|
4
4
|
import asyncio
|
|
@@ -42,6 +42,28 @@ class AsyncService(ABC):
|
|
|
42
42
|
if self.daemon_task:
|
|
43
43
|
await self.daemon_task
|
|
44
44
|
|
|
45
|
+
def run_in_thread(self, runner: Callable[[], Awaitable[Any]]) -> asyncio.Future:
|
|
46
|
+
loop = asyncio.get_running_loop()
|
|
47
|
+
future: asyncio.Future = loop.create_future()
|
|
48
|
+
|
|
49
|
+
def _start_in_thread():
|
|
50
|
+
thread_loop = asyncio.new_event_loop()
|
|
51
|
+
asyncio.set_event_loop(thread_loop)
|
|
52
|
+
|
|
53
|
+
async def _run_and_set_result():
|
|
54
|
+
try:
|
|
55
|
+
result = await runner()
|
|
56
|
+
loop.call_soon_threadsafe(future.set_result, result)
|
|
57
|
+
except Exception as e:
|
|
58
|
+
loop.call_soon_threadsafe(future.set_exception, e)
|
|
59
|
+
|
|
60
|
+
thread_loop.run_until_complete(_run_and_set_result())
|
|
61
|
+
|
|
62
|
+
thread = Thread(target=_start_in_thread)
|
|
63
|
+
thread.start()
|
|
64
|
+
|
|
65
|
+
return future
|
|
66
|
+
|
|
45
67
|
async def _start(self) -> None:
|
|
46
68
|
self.started = True
|
|
47
69
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
|
+
from enum import Enum
|
|
3
|
+
from pydantic import BaseModel, Field
|
|
4
|
+
from ...common import CommonActionConfig
|
|
5
|
+
|
|
6
|
+
class ModelTaskMode(str, Enum):
|
|
7
|
+
INFERENCE = "inference"
|
|
8
|
+
TRAINING = "training"
|
|
9
|
+
|
|
10
|
+
class CommonModelActionConfig(CommonActionConfig):
|
|
11
|
+
mode: ModelTaskMode = Field(..., description="Mode for model task execution.")
|
|
12
|
+
|
|
13
|
+
class CommonModelInferenceActionConfig(CommonModelActionConfig):
|
|
14
|
+
mode: ModelTaskMode = Literal[ModelTaskMode.INFERENCE]
|
|
15
|
+
stream: bool = Field(default=False, description="Whether to enable streaming responses for inference.")
|
|
16
|
+
|
|
17
|
+
class CommonModelTrainingActionConfig(CommonModelActionConfig):
|
|
18
|
+
mode: ModelTaskMode = Literal[ModelTaskMode.TRAINING]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
2
|
from pydantic import BaseModel, Field
|
|
3
3
|
from pydantic import model_validator
|
|
4
|
-
from .common import
|
|
4
|
+
from .common import CommonModelInferenceActionConfig
|
|
5
5
|
|
|
6
6
|
class SummarizationParamsConfig(BaseModel):
|
|
7
7
|
max_input_length: Union[int, str] = Field(default=1024, description="Maximum number of tokens per input text.")
|
|
@@ -13,6 +13,6 @@ class SummarizationParamsConfig(BaseModel):
|
|
|
13
13
|
do_sample: bool = Field(default=True, description="Whether to use sampling.")
|
|
14
14
|
batch_size: Union[int, str] = Field(default=32, description="Number of input texts to process in a single batch.")
|
|
15
15
|
|
|
16
|
-
class SummarizationModelActionConfig(
|
|
16
|
+
class SummarizationModelActionConfig(CommonModelInferenceActionConfig):
|
|
17
17
|
text: Union[str, List[str]] = Field(..., description="Input text to summarize.")
|
|
18
18
|
params: SummarizationParamsConfig = Field(default_factory=SummarizationParamsConfig, description="Summarization configuration parameters.")
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
2
|
from pydantic import BaseModel, Field
|
|
3
3
|
from pydantic import model_validator
|
|
4
|
-
from .common import
|
|
4
|
+
from .common import CommonModelInferenceActionConfig
|
|
5
5
|
|
|
6
6
|
class TextClassificationParamsConfig(BaseModel):
|
|
7
7
|
return_probabilities: Union[bool, str] = Field(default=False, description="Whether to return class probabilities for each prediction.")
|
|
8
8
|
batch_size: Union[int, str] = Field(default=32, description="Number of input texts to process in a single batch.")
|
|
9
9
|
|
|
10
|
-
class TextClassificationModelActionConfig(
|
|
10
|
+
class TextClassificationModelActionConfig(CommonModelInferenceActionConfig):
|
|
11
11
|
text: Union[str, List[str]] = Field(..., description="Input text to classify.")
|
|
12
12
|
params: TextClassificationParamsConfig = Field(default_factory=TextClassificationParamsConfig, description="Text classification configuration parameters.")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
2
|
from pydantic import BaseModel, Field
|
|
3
3
|
from pydantic import model_validator
|
|
4
|
-
from .common import
|
|
4
|
+
from .common import CommonModelInferenceActionConfig
|
|
5
5
|
|
|
6
6
|
class TextEmbeddingParamsConfig(BaseModel):
|
|
7
7
|
max_input_length: Union[int, str] = Field(default=512, description="Maximum number of tokens per input text.")
|
|
@@ -9,6 +9,6 @@ class TextEmbeddingParamsConfig(BaseModel):
|
|
|
9
9
|
normalize: Union[bool, str] = Field(default=True, description="Whether to apply L2 normalization to the output embeddings.")
|
|
10
10
|
batch_size: Union[int, str] = Field(default=32, description="Number of input texts to process in a single batch.")
|
|
11
11
|
|
|
12
|
-
class TextEmbeddingModelActionConfig(
|
|
12
|
+
class TextEmbeddingModelActionConfig(CommonModelInferenceActionConfig):
|
|
13
13
|
text: Union[str, List[str]] = Field(..., description="Input text to be embedded.")
|
|
14
14
|
params: TextEmbeddingParamsConfig = Field(default_factory=TextEmbeddingParamsConfig, description="Configuration parameters for embedding generation.")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
2
|
from pydantic import BaseModel, Field
|
|
3
3
|
from pydantic import model_validator
|
|
4
|
-
from .common import
|
|
4
|
+
from .common import CommonModelInferenceActionConfig
|
|
5
5
|
|
|
6
6
|
class TextGenerationParamsConfig(BaseModel):
|
|
7
7
|
max_output_length: Union[int, str] = Field(default=1024, description="The maximum number of tokens to generate.")
|
|
@@ -11,6 +11,6 @@ class TextGenerationParamsConfig(BaseModel):
|
|
|
11
11
|
top_p: Union[int, str] = Field(default=0.9, description="Top-p (nucleus) sampling; restricts sampling to tokens with cumulative probability >= top_p.")
|
|
12
12
|
batch_size: Union[int, str] = Field(default=32, description="Number of input texts to process in a single batch.")
|
|
13
13
|
|
|
14
|
-
class TextGenerationModelActionConfig(
|
|
14
|
+
class TextGenerationModelActionConfig(CommonModelInferenceActionConfig):
|
|
15
15
|
prompt: Union[str, List[str]] = Field(..., description="Input prompt to generate text from.")
|
|
16
16
|
params: TextGenerationParamsConfig = Field(default_factory=TextGenerationParamsConfig, description="Text generation configuration parameters.")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
2
|
from pydantic import BaseModel, Field
|
|
3
3
|
from pydantic import model_validator
|
|
4
|
-
from .common import
|
|
4
|
+
from .common import CommonModelInferenceActionConfig
|
|
5
5
|
|
|
6
6
|
class TranslationParamsConfig(BaseModel):
|
|
7
7
|
max_input_length: Union[int, str] = Field(default=1024, description="Maximum number of tokens per input text.")
|
|
@@ -11,6 +11,6 @@ class TranslationParamsConfig(BaseModel):
|
|
|
11
11
|
length_penalty: Union[float, str] = Field(default=1.0, description="Length penalty applied during beam search.")
|
|
12
12
|
batch_size: Union[int, str] = Field(default=32, description="Number of input texts to process in a single batch.")
|
|
13
13
|
|
|
14
|
-
class TranslationModelActionConfig(
|
|
14
|
+
class TranslationModelActionConfig(CommonModelInferenceActionConfig):
|
|
15
15
|
text: Union[str, List[str]] = Field(..., description="Input text to translate.")
|
|
16
16
|
params: TranslationParamsConfig = Field(default_factory=TranslationParamsConfig, description="Translation configuration parameters.")
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
from typing import Type, Union, Literal, Optional, Dict, List, Tuple, Set, Annotated, Any
|
|
2
|
-
from enum import Enum
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
from ...common import CommonActionConfig
|
|
5
|
-
|
|
6
|
-
class ModelTaskMode(str, Enum):
|
|
7
|
-
INFERENCE = "inference"
|
|
8
|
-
TRAINING = "training"
|
|
9
|
-
|
|
10
|
-
class CommonModelActionConfig(CommonActionConfig):
|
|
11
|
-
mode: ModelTaskMode = Field(default=ModelTaskMode.INFERENCE, description="")
|
|
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
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/mcp_client.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/mcp_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/component/services/text_splitter.py
RENAMED
|
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
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runner/http_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/docker/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/runtime/docker/docker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/services/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/controller/services/mcp_server.py
RENAMED
|
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
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/listener/services/http_callback.py
RENAMED
|
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
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/core/workflow/job/impl/random_router.py
RENAMED
|
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
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/http_client.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/http_server.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/impl/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/action/impl/text_splitter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/http_client.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/mcp_client.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/mcp_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/impl/types.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/text_splitter.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/component/impl/workflow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/impl/mcp_server.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/common.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/dynamic.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/gradio.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/controller/webui/impl/static.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel.py
RENAMED
|
File without changes
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/gateway/impl/ssh_tunnel.py
RENAMED
|
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
|
{model_compose-0.3.4 → model_compose-0.3.5}/src/mindor/dsl/schema/listener/impl/http_callback.py
RENAMED
|
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
|