model-compose 0.4.4__tar.gz → 0.4.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.4.4 → model_compose-0.4.5}/PKG-INFO +1 -1
- {model_compose-0.4.4 → model_compose-0.4.5}/pyproject.toml +1 -1
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/mcp_server.py +11 -1
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/PKG-INFO +1 -1
- {model_compose-0.4.4 → model_compose-0.4.5}/LICENSE +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/README.md +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/setup.cfg +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/cli/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/cli/compose.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/component.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/context.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/http_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/http_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/mcp_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/loader.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/model.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/image_to_text.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/summarization.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/text_classification.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/text_embedding.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/text_generation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/tasks/translation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/shell.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/text_splitter.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/drivers/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/drivers/chroma.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/drivers/milvus.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/vector_store.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/workflow.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/compose/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/compose/compose.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/compose/manager.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/controller.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runner/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runner/client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runner/http_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runner/mcp_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runner/runner.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/docker/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/docker/context/Dockerfile +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/docker/docker.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/native/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/native/native.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/specs.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/services/http_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/services/mcp_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/webui/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/webui/gradio.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/webui/webui.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/gateway.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/services/http_tunnel.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/gateway/services/ssh_tunnel.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/listener/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/listener/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/listener/listener.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/listener/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/listener/services/http_callback.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/logger.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/logging.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/services/console.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/logger/services/file.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/runtime/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/runtime/docker/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/runtime/docker/docker.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/runtime/env.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/services/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/services/async_service.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/caching.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/http_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/http_request.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/http_response.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/http_status.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/image.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/mcp_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/package.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/renderers.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/resolvers.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/shell.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/ssh_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/streamer.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/streaming.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/time.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/utils/workqueue.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/context.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/base.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/action.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/delay.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/filter.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/if_.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/random_router.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/impl/switch.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/job/job.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/schema.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/workflow/workflow.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/loader.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/action.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/http_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/http_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/mcp_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/mcp_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/chat_completion.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/image_to_text.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/summarization.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/text_classification.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/text_embedding.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/text_generation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/translation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/model.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/shell.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/text_splitter.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/chroma.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/faiss.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/milvus.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/impl/qdrant.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/vector_store/vector_store.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/workflow.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/component.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/http_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/http_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/mcp_client.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/mcp_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/chat_completion.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/image_to_text.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/summarization.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/text_classification.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/text_embedding.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/text_generation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/translation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/model.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/shell.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/text_splitter.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/chroma.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/faiss.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/milvus.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/qdrant.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/vector_store/vector_store.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/workflow.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/compose.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/controller.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/http_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/mcp_server.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/dynamic.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/gradio.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/static.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/webui.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/gateway.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/http_tunnel.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/cloudflare.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/ngrok.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/ssh_tunnel.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/gateway/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/action.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/delay.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/filter.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/if_.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/random_router.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/switch.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/job/job.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/impl/http_callback.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/listener/listener.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/impl/console.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/impl/file.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/logger/logger.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/impl/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/impl/common.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/impl/docker.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/impl/native.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/impl/types.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/runtime/runtime.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/transport/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/transport/http.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/transport/ssh.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/workflow.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/utils/__init__.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/utils/annotation.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/utils/enum.py +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/SOURCES.txt +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/dependency_links.txt +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/entry_points.txt +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/requires.txt +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/src/model_compose.egg-info/top_level.txt +0 -0
- {model_compose-0.4.4 → model_compose-0.4.5}/tests/test_cli.py +0 -0
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/mcp_server.py
RENAMED
|
@@ -5,6 +5,7 @@ from mindor.core.utils.mcp_client import McpClient, ContentBlock, TextContent, I
|
|
|
5
5
|
from mindor.core.utils.shell import run_command_streaming
|
|
6
6
|
from ..base import ComponentService, ComponentType, ComponentGlobalConfigs, register_component
|
|
7
7
|
from ..context import ComponentActionContext
|
|
8
|
+
import asyncio
|
|
8
9
|
|
|
9
10
|
class McpServerAction:
|
|
10
11
|
def __init__(self, config: McpServerActionConfig):
|
|
@@ -61,10 +62,19 @@ class McpServerComponent(ComponentService):
|
|
|
61
62
|
|
|
62
63
|
async def _serve(self) -> None:
|
|
63
64
|
if self.config.manage.scripts.start:
|
|
64
|
-
await run_command_streaming(self.config.manage.scripts.start, self.config.manage.working_dir, self.config.manage.env
|
|
65
|
+
await run_command_streaming(self.config.manage.scripts.start, self.config.manage.working_dir, self.config.manage.env)
|
|
65
66
|
|
|
66
67
|
async def _shutdown(self) -> None:
|
|
67
68
|
pass
|
|
68
69
|
|
|
70
|
+
async def _is_ready(self) -> bool:
|
|
71
|
+
try:
|
|
72
|
+
_, writer = await asyncio.open_connection("localhost", self.config.port)
|
|
73
|
+
writer.close()
|
|
74
|
+
await writer.wait_closed()
|
|
75
|
+
return True
|
|
76
|
+
except (ConnectionRefusedError, OSError):
|
|
77
|
+
return False
|
|
78
|
+
|
|
69
79
|
async def _run(self, action: ActionConfig, context: ComponentActionContext) -> Any:
|
|
70
80
|
return await McpServerAction(action).run(context, self.client)
|
|
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.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/http_client.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/mcp_client.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/base.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/model/loader.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/text_splitter.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/component/services/vector_store/base.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.4.4 → model_compose-0.4.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.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/docker/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/docker/docker.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/native/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/runtime/native/native.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/core/controller/services/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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.4.4 → model_compose-0.4.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/http_client.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/http_server.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/impl/common.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/action/impl/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
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/http_client.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/mcp_client.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/mcp_server.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/impl/types.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/model/model.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/component/impl/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
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/http_server.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/impl/mcp_server.py
RENAMED
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/__init__.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/common.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/dynamic.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.5}/src/mindor/dsl/schema/controller/webui/impl/gradio.py
RENAMED
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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
|
|
File without changes
|
{model_compose-0.4.4 → model_compose-0.4.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|