├── .gitignore ├── LICENSE ├── README.ko.md ├── README.md ├── README.zh-cn.md ├── docs ├── images │ ├── architecture-diagram.png │ ├── main-banner.png │ └── webui.png ├── reference │ ├── cli.md │ ├── compose.md │ └── compose │ │ ├── component.md │ │ ├── components │ │ ├── http-client.md │ │ ├── http-server.md │ │ ├── image-processor.md │ │ ├── mcp-client.md │ │ ├── mcp-server.md │ │ ├── model.md │ │ ├── shell.md │ │ ├── text-splitter.md │ │ ├── vector-store.md │ │ └── workflow.md │ │ ├── controller.md │ │ ├── gateway.md │ │ ├── listener.md │ │ ├── logger.md │ │ └── workflow.md ├── specs │ ├── google-adk-component-spec.md │ └── langchain-memory-component-spec.md └── user-guide │ ├── 00-table-of-contents.md │ ├── 01-getting-started.md │ ├── 02-core-concepts.md │ ├── 03-cli-usage.md │ ├── 04-component-configuration.md │ ├── 05-writing-workflows.md │ ├── 06-controller-configuration.md │ ├── 07-webui-configuration.md │ ├── 08-local-ai-models.md │ ├── 09-model-training.md │ ├── 10-external-service-integration.md │ ├── 11-streaming-mode.md │ ├── 12-variable-binding.md │ ├── 13-system-integration.md │ ├── 14-deployment.md │ ├── 15-practical-examples.md │ ├── 16-troubleshooting.md │ ├── 17-appendix.md │ ├── README.md │ ├── TODO.ko.md │ ├── image-handling.md │ ├── images │ └── 01-001.png │ ├── ko │ ├── 00-table-of-contents.md │ ├── 01-getting-started.md │ ├── 02-core-concepts.md │ ├── 03-cli-usage.md │ ├── 04-component-configuration.md │ ├── 05-writing-workflows.md │ ├── 06-controller-configuration.md │ ├── 07-webui-configuration.md │ ├── 08-local-ai-models.md │ ├── 09-model-training.md │ ├── 10-external-service-integration.md │ ├── 11-streaming-mode.md │ ├── 12-variable-binding.md │ ├── 13-system-integration.md │ ├── 14-deployment.md │ ├── 15-practical-examples.md │ ├── 16-troubleshooting.md │ ├── 17-appendix.md │ └── README.md │ └── zh-cn │ ├── 00-table-of-contents.md │ ├── 01-getting-started.md │ ├── 02-core-concepts.md │ ├── 03-cli-usage.md │ ├── 04-component-configuration.md │ ├── 05-writing-workflows.md │ ├── 06-controller-configuration.md │ ├── 07-webui-configuration.md │ ├── 08-local-ai-models.md │ ├── 09-model-training.md │ ├── 10-external-service-integration.md │ ├── 11-streaming-mode.md │ ├── 12-variable-binding.md │ ├── 13-system-integration.md │ ├── 14-deployment.md │ ├── 15-practical-examples.md │ ├── 16-troubleshooting.md │ ├── 17-appendix.md │ └── README.md ├── examples ├── .gitignore ├── README.ko.md ├── README.md ├── README.zh-cn.md ├── analyze-disk-usage │ ├── .env.sample │ ├── README.ko.md │ ├── README.md │ ├── README.zh-cn.md │ └── model-compose.yml ├── datasets │ └── huggingface │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml ├── echo-server │ ├── README.ko.md │ ├── README.md │ ├── README.zh-cn.md │ ├── main.py │ └── model-compose.yml ├── gateway │ ├── http-tunnel │ │ └── ngrok │ │ │ ├── .env.example │ │ │ ├── README.md │ │ │ ├── model-compose.yml │ │ │ └── server.py │ └── ssh-tunnel │ │ ├── .env.example │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ ├── model-compose.yml │ │ └── server.py ├── image-processor │ └── model-compose.yml ├── make-inspiring-quote-voice │ ├── .env.sample │ ├── README.ko.md │ ├── README.md │ ├── README.zh-cn.md │ └── model-compose.yml ├── mcp-servers │ └── slack-bot │ │ ├── .env.sample │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml ├── model-tasks │ ├── chat-completion │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── face-embedding │ │ ├── model-compose.yml │ │ └── models │ │ │ └── put-models-here │ ├── image-to-text │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── image-upscale │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── summarization-stream │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── summarization │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── text-classification │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── text-embedding │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── text-generation-lora │ │ ├── .env.sample │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── text-generation │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ ├── translation-stream │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ └── translation │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml ├── providers │ ├── elevenlabs │ │ └── elevenlabs-text-to-speech │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ ├── google │ │ └── google-cloud-vision │ │ │ ├── .env.example │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ ├── openai │ │ ├── openai-audio-speech │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ ├── openai-audio-transciptions │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ ├── openai-chat-completions-stream │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ ├── openai-chat-completions │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ ├── openai-image-edits │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ ├── openai-image-generations │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ │ └── openai-image-variations │ │ │ ├── .env.sample │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ └── model-compose.yml │ └── xai │ │ └── xai-chat-completion │ │ ├── .env.sample │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml ├── split-text │ ├── README.ko.md │ ├── README.md │ ├── README.zh-cn.md │ └── model-compose.yml ├── vector-store │ ├── chroma │ │ ├── .gitignore │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml │ └── milvus │ │ ├── README.ko.md │ │ ├── README.md │ │ ├── README.zh-cn.md │ │ └── model-compose.yml └── vllm-chat-completion-stream │ ├── README.ko.md │ ├── README.md │ ├── README.zh-cn.md │ └── model-compose.yml ├── pyproject.toml ├── src └── mindor │ ├── __init__.py │ ├── cli │ ├── __init__.py │ └── compose.py │ ├── core │ ├── __init__.py │ ├── component │ │ ├── __init__.py │ │ ├── base.py │ │ ├── component.py │ │ ├── context.py │ │ ├── runtime │ │ │ ├── __init__.py │ │ │ ├── process_manager.py │ │ │ └── process_worker.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── datasets.py │ │ │ ├── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── huggingface.py │ │ │ │ └── local.py │ │ │ └── utils.py │ │ │ ├── http_client.py │ │ │ ├── http_server.py │ │ │ ├── image_processor.py │ │ │ ├── mcp_client.py │ │ │ ├── mcp_server.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── huggingface.py │ │ │ │ ├── huggingface_hub.py │ │ │ │ └── unsloth.py │ │ │ ├── model.py │ │ │ └── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── chat_completion │ │ │ │ ├── __init__.py │ │ │ │ └── huggingface.py │ │ │ │ ├── face_embedding │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── custom.py │ │ │ │ └── insightface.py │ │ │ │ ├── image_generation │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── custom.py │ │ │ │ ├── flux.py │ │ │ │ ├── hunyuan_image.py │ │ │ │ └── sdxl.py │ │ │ │ ├── image_to_text │ │ │ │ ├── __init__.py │ │ │ │ └── huggingface.py │ │ │ │ ├── image_upscale │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── custom.py │ │ │ │ ├── esrgan.py │ │ │ │ ├── ldsr.py │ │ │ │ ├── real_esrgan.py │ │ │ │ └── swinir.py │ │ │ │ ├── text_classification │ │ │ │ ├── __init__.py │ │ │ │ └── huggingface.py │ │ │ │ ├── text_embedding │ │ │ │ ├── __init__.py │ │ │ │ └── huggingface.py │ │ │ │ └── text_generation │ │ │ │ ├── __init__.py │ │ │ │ └── huggingface.py │ │ │ ├── shell.py │ │ │ ├── text_splitter.py │ │ │ ├── vector_store │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── chroma.py │ │ │ │ └── milvus.py │ │ │ └── vector_store.py │ │ │ └── workflow.py │ ├── compose │ │ ├── __init__.py │ │ ├── compose.py │ │ └── manager.py │ ├── controller │ │ ├── __init__.py │ │ ├── base.py │ │ ├── controller.py │ │ ├── runner │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── http_client.py │ │ │ ├── mcp_client.py │ │ │ └── runner.py │ │ ├── runtime │ │ │ ├── __init__.py │ │ │ ├── docker │ │ │ │ ├── __init__.py │ │ │ │ ├── context │ │ │ │ │ └── Dockerfile │ │ │ │ └── docker.py │ │ │ ├── native │ │ │ │ ├── __init__.py │ │ │ │ └── native.py │ │ │ └── specs.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── http_server.py │ │ │ └── mcp_server.py │ │ └── webui │ │ │ ├── __init__.py │ │ │ ├── gradio.py │ │ │ └── webui.py │ ├── foundation │ │ ├── __init__.py │ │ ├── async_service.py │ │ ├── ipc_messages.py │ │ ├── process_manager.py │ │ └── process_worker.py │ ├── gateway │ │ ├── __init__.py │ │ ├── base.py │ │ ├── gateway.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── http_tunnel │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── drivers │ │ │ │ ├── __init__.py │ │ │ │ ├── cloudflare.py │ │ │ │ └── ngrok.py │ │ │ └── http_tunnel.py │ │ │ └── ssh_tunnel.py │ ├── listener │ │ ├── __init__.py │ │ ├── base.py │ │ ├── listener.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── http_callback.py │ │ │ └── http_trigger.py │ ├── logger │ │ ├── __init__.py │ │ ├── base.py │ │ ├── logger.py │ │ ├── logging.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── console.py │ │ │ └── file.py │ ├── runtime │ │ ├── __init__.py │ │ ├── docker │ │ │ ├── __init__.py │ │ │ └── docker.py │ │ └── env.py │ ├── utils │ │ ├── __init__.py │ │ ├── caching.py │ │ ├── http_client.py │ │ ├── http_request.py │ │ ├── http_response.py │ │ ├── http_status.py │ │ ├── image.py │ │ ├── mcp_client.py │ │ ├── package.py │ │ ├── renderers.py │ │ ├── resolvers.py │ │ ├── shell.py │ │ ├── ssh_client.py │ │ ├── streamer.py │ │ ├── streaming.py │ │ ├── time.py │ │ ├── url.py │ │ ├── websocket_client.py │ │ └── work_queue.py │ └── workflow │ │ ├── __init__.py │ │ ├── context.py │ │ ├── job │ │ ├── __init__.py │ │ ├── base.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── delay.py │ │ │ ├── filter.py │ │ │ ├── if_.py │ │ │ ├── random_router.py │ │ │ └── switch.py │ │ └── job.py │ │ ├── schema.py │ │ └── workflow.py │ └── dsl │ ├── __init__.py │ ├── loader.py │ ├── schema │ ├── __init__.py │ ├── action │ │ ├── __init__.py │ │ ├── action.py │ │ └── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── datasets.py │ │ │ └── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── huggingface.py │ │ │ │ └── local.py │ │ │ ├── http_client.py │ │ │ ├── http_server.py │ │ │ ├── image_processor.py │ │ │ ├── mcp_client.py │ │ │ ├── mcp_server.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── chat_completion.py │ │ │ │ ├── common.py │ │ │ │ ├── face_embedding │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── face_embedding.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── dlib.py │ │ │ │ │ │ ├── facenet.py │ │ │ │ │ │ └── insightface.py │ │ │ │ ├── image_generation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── image_generation.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── flux.py │ │ │ │ │ │ ├── hunyuan_image.py │ │ │ │ │ │ └── sdxl.py │ │ │ │ ├── image_to_text.py │ │ │ │ ├── image_upscale │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── image_upscale.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── esrgan.py │ │ │ │ │ │ ├── ldsr.py │ │ │ │ │ │ ├── real_esrgan.py │ │ │ │ │ │ └── swinir.py │ │ │ │ ├── text_classification.py │ │ │ │ ├── text_embedding.py │ │ │ │ └── text_generation.py │ │ │ └── model.py │ │ │ ├── model_trainer │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── classification.py │ │ │ │ ├── common.py │ │ │ │ └── sft.py │ │ │ └── model_trainer.py │ │ │ ├── shell.py │ │ │ ├── text_splitter.py │ │ │ ├── vector_store │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── chroma.py │ │ │ │ ├── common.py │ │ │ │ ├── faiss.py │ │ │ │ ├── milvus.py │ │ │ │ └── qdrant.py │ │ │ └── vector_store.py │ │ │ └── workflow.py │ ├── component │ │ ├── __init__.py │ │ ├── component.py │ │ └── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ └── datasets.py │ │ │ ├── http_client.py │ │ │ ├── http_server.py │ │ │ ├── image_processor.py │ │ │ ├── mcp_client.py │ │ │ ├── mcp_server.py │ │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── chat_completion.py │ │ │ │ ├── common.py │ │ │ │ ├── face_embedding │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── face_embedding.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── dlib.py │ │ │ │ │ │ ├── facenet.py │ │ │ │ │ │ └── insightface.py │ │ │ │ ├── image_generation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── image_generation.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── flux.py │ │ │ │ │ │ ├── hunyuan_image.py │ │ │ │ │ │ └── sdxl.py │ │ │ │ ├── image_to_text.py │ │ │ │ ├── image_upscale │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── image_upscale.py │ │ │ │ │ └── impl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── esrgan.py │ │ │ │ │ │ ├── ldsr.py │ │ │ │ │ │ ├── real_esrgan.py │ │ │ │ │ │ └── swinir.py │ │ │ │ ├── text_classification.py │ │ │ │ ├── text_embedding.py │ │ │ │ └── text_generation.py │ │ │ └── model.py │ │ │ ├── model_trainer │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── classification.py │ │ │ │ ├── common.py │ │ │ │ └── sft.py │ │ │ └── model_trainer.py │ │ │ ├── shell.py │ │ │ ├── text_splitter.py │ │ │ ├── types.py │ │ │ ├── vector_store │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── chroma.py │ │ │ │ ├── common.py │ │ │ │ ├── faiss.py │ │ │ │ ├── milvus.py │ │ │ │ └── qdrant.py │ │ │ └── vector_store.py │ │ │ └── workflow.py │ ├── compose.py │ ├── controller │ │ ├── __init__.py │ │ ├── controller.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── http_server.py │ │ │ ├── mcp_server.py │ │ │ └── types.py │ │ └── webui │ │ │ ├── __init__.py │ │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── dynamic.py │ │ │ ├── gradio.py │ │ │ └── static.py │ │ │ └── webui.py │ ├── gateway │ │ ├── __init__.py │ │ ├── gateway.py │ │ └── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── http_tunnel │ │ │ ├── __init__.py │ │ │ ├── http_tunnel.py │ │ │ └── impl │ │ │ │ ├── __init__.py │ │ │ │ ├── cloudflare.py │ │ │ │ ├── common.py │ │ │ │ └── ngrok.py │ │ │ ├── ssh_tunnel.py │ │ │ └── types.py │ ├── job │ │ ├── __init__.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── common.py │ │ │ ├── delay.py │ │ │ ├── filter.py │ │ │ ├── if_.py │ │ │ ├── random_router.py │ │ │ ├── switch.py │ │ │ └── types.py │ │ └── job.py │ ├── listener │ │ ├── __init__.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── http_callback.py │ │ │ ├── http_trigger.py │ │ │ └── types.py │ │ └── listener.py │ ├── logger │ │ ├── __init__.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── console.py │ │ │ ├── file.py │ │ │ └── types.py │ │ └── logger.py │ ├── runtime │ │ ├── __init__.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── docker.py │ │ │ ├── embedded.py │ │ │ ├── native.py │ │ │ ├── process.py │ │ │ └── types.py │ │ └── runtime.py │ ├── transport │ │ ├── __init__.py │ │ ├── http.py │ │ └── ssh.py │ └── workflow.py │ └── utils │ ├── __init__.py │ ├── annotation.py │ ├── enum.py │ └── path.py └── tests ├── core ├── component │ └── runtime │ │ ├── __init__.py │ │ └── test_component_process_runtime.py ├── runtime │ ├── test_docker_manager.py │ └── test_process_runtime.py └── utils │ └── test_ssh_client.py ├── dsl ├── gateway │ └── test_ssh_tunnel.py └── runtime │ └── test_docker.py └── test_cli.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /docs/images/architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/images/architecture-diagram.png -------------------------------------------------------------------------------- /docs/images/main-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/images/main-banner.png -------------------------------------------------------------------------------- /docs/images/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/images/webui.png -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose.md -------------------------------------------------------------------------------- /docs/reference/compose/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/component.md -------------------------------------------------------------------------------- /docs/reference/compose/components/http-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/http-client.md -------------------------------------------------------------------------------- /docs/reference/compose/components/http-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/http-server.md -------------------------------------------------------------------------------- /docs/reference/compose/components/image-processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/image-processor.md -------------------------------------------------------------------------------- /docs/reference/compose/components/mcp-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/mcp-client.md -------------------------------------------------------------------------------- /docs/reference/compose/components/mcp-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/mcp-server.md -------------------------------------------------------------------------------- /docs/reference/compose/components/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/model.md -------------------------------------------------------------------------------- /docs/reference/compose/components/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/shell.md -------------------------------------------------------------------------------- /docs/reference/compose/components/text-splitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/text-splitter.md -------------------------------------------------------------------------------- /docs/reference/compose/components/vector-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/vector-store.md -------------------------------------------------------------------------------- /docs/reference/compose/components/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/components/workflow.md -------------------------------------------------------------------------------- /docs/reference/compose/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/controller.md -------------------------------------------------------------------------------- /docs/reference/compose/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/gateway.md -------------------------------------------------------------------------------- /docs/reference/compose/listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/listener.md -------------------------------------------------------------------------------- /docs/reference/compose/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/logger.md -------------------------------------------------------------------------------- /docs/reference/compose/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/reference/compose/workflow.md -------------------------------------------------------------------------------- /docs/specs/google-adk-component-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/specs/google-adk-component-spec.md -------------------------------------------------------------------------------- /docs/specs/langchain-memory-component-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/specs/langchain-memory-component-spec.md -------------------------------------------------------------------------------- /docs/user-guide/00-table-of-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/00-table-of-contents.md -------------------------------------------------------------------------------- /docs/user-guide/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/01-getting-started.md -------------------------------------------------------------------------------- /docs/user-guide/02-core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/02-core-concepts.md -------------------------------------------------------------------------------- /docs/user-guide/03-cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/03-cli-usage.md -------------------------------------------------------------------------------- /docs/user-guide/04-component-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/04-component-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/05-writing-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/05-writing-workflows.md -------------------------------------------------------------------------------- /docs/user-guide/06-controller-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/06-controller-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/07-webui-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/07-webui-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/08-local-ai-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/08-local-ai-models.md -------------------------------------------------------------------------------- /docs/user-guide/09-model-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/09-model-training.md -------------------------------------------------------------------------------- /docs/user-guide/10-external-service-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/10-external-service-integration.md -------------------------------------------------------------------------------- /docs/user-guide/11-streaming-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/11-streaming-mode.md -------------------------------------------------------------------------------- /docs/user-guide/12-variable-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/12-variable-binding.md -------------------------------------------------------------------------------- /docs/user-guide/13-system-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/13-system-integration.md -------------------------------------------------------------------------------- /docs/user-guide/14-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/14-deployment.md -------------------------------------------------------------------------------- /docs/user-guide/15-practical-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/15-practical-examples.md -------------------------------------------------------------------------------- /docs/user-guide/16-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/16-troubleshooting.md -------------------------------------------------------------------------------- /docs/user-guide/17-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/17-appendix.md -------------------------------------------------------------------------------- /docs/user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/README.md -------------------------------------------------------------------------------- /docs/user-guide/TODO.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/TODO.ko.md -------------------------------------------------------------------------------- /docs/user-guide/image-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/image-handling.md -------------------------------------------------------------------------------- /docs/user-guide/images/01-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/images/01-001.png -------------------------------------------------------------------------------- /docs/user-guide/ko/00-table-of-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/00-table-of-contents.md -------------------------------------------------------------------------------- /docs/user-guide/ko/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/01-getting-started.md -------------------------------------------------------------------------------- /docs/user-guide/ko/02-core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/02-core-concepts.md -------------------------------------------------------------------------------- /docs/user-guide/ko/03-cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/03-cli-usage.md -------------------------------------------------------------------------------- /docs/user-guide/ko/04-component-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/04-component-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/ko/05-writing-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/05-writing-workflows.md -------------------------------------------------------------------------------- /docs/user-guide/ko/06-controller-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/06-controller-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/ko/07-webui-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/07-webui-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/ko/08-local-ai-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/08-local-ai-models.md -------------------------------------------------------------------------------- /docs/user-guide/ko/09-model-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/09-model-training.md -------------------------------------------------------------------------------- /docs/user-guide/ko/10-external-service-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/10-external-service-integration.md -------------------------------------------------------------------------------- /docs/user-guide/ko/11-streaming-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/11-streaming-mode.md -------------------------------------------------------------------------------- /docs/user-guide/ko/12-variable-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/12-variable-binding.md -------------------------------------------------------------------------------- /docs/user-guide/ko/13-system-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/13-system-integration.md -------------------------------------------------------------------------------- /docs/user-guide/ko/14-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/14-deployment.md -------------------------------------------------------------------------------- /docs/user-guide/ko/15-practical-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/15-practical-examples.md -------------------------------------------------------------------------------- /docs/user-guide/ko/16-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/16-troubleshooting.md -------------------------------------------------------------------------------- /docs/user-guide/ko/17-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/17-appendix.md -------------------------------------------------------------------------------- /docs/user-guide/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/ko/README.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/00-table-of-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/00-table-of-contents.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/01-getting-started.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/02-core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/02-core-concepts.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/03-cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/03-cli-usage.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/04-component-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/04-component-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/05-writing-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/05-writing-workflows.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/06-controller-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/06-controller-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/07-webui-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/07-webui-configuration.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/08-local-ai-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/08-local-ai-models.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/09-model-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/09-model-training.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/10-external-service-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/10-external-service-integration.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/11-streaming-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/11-streaming-mode.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/12-variable-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/12-variable-binding.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/13-system-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/13-system-integration.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/14-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/14-deployment.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/15-practical-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/15-practical-examples.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/16-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/16-troubleshooting.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/17-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/17-appendix.md -------------------------------------------------------------------------------- /docs/user-guide/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/docs/user-guide/zh-cn/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/README.ko.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/README.zh-cn.md -------------------------------------------------------------------------------- /examples/analyze-disk-usage/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/analyze-disk-usage/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/analyze-disk-usage/README.ko.md -------------------------------------------------------------------------------- /examples/analyze-disk-usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/analyze-disk-usage/README.md -------------------------------------------------------------------------------- /examples/analyze-disk-usage/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/analyze-disk-usage/README.zh-cn.md -------------------------------------------------------------------------------- /examples/analyze-disk-usage/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/analyze-disk-usage/model-compose.yml -------------------------------------------------------------------------------- /examples/datasets/huggingface/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/datasets/huggingface/README.ko.md -------------------------------------------------------------------------------- /examples/datasets/huggingface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/datasets/huggingface/README.md -------------------------------------------------------------------------------- /examples/datasets/huggingface/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/datasets/huggingface/README.zh-cn.md -------------------------------------------------------------------------------- /examples/datasets/huggingface/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/datasets/huggingface/model-compose.yml -------------------------------------------------------------------------------- /examples/echo-server/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/echo-server/README.ko.md -------------------------------------------------------------------------------- /examples/echo-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/echo-server/README.md -------------------------------------------------------------------------------- /examples/echo-server/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/echo-server/README.zh-cn.md -------------------------------------------------------------------------------- /examples/echo-server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/echo-server/main.py -------------------------------------------------------------------------------- /examples/echo-server/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/echo-server/model-compose.yml -------------------------------------------------------------------------------- /examples/gateway/http-tunnel/ngrok/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/http-tunnel/ngrok/.env.example -------------------------------------------------------------------------------- /examples/gateway/http-tunnel/ngrok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/http-tunnel/ngrok/README.md -------------------------------------------------------------------------------- /examples/gateway/http-tunnel/ngrok/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/http-tunnel/ngrok/model-compose.yml -------------------------------------------------------------------------------- /examples/gateway/http-tunnel/ngrok/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/http-tunnel/ngrok/server.py -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/.env.example -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/README.ko.md -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/README.md -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/README.zh-cn.md -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/model-compose.yml -------------------------------------------------------------------------------- /examples/gateway/ssh-tunnel/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/gateway/ssh-tunnel/server.py -------------------------------------------------------------------------------- /examples/image-processor/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/image-processor/model-compose.yml -------------------------------------------------------------------------------- /examples/make-inspiring-quote-voice/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/make-inspiring-quote-voice/.env.sample -------------------------------------------------------------------------------- /examples/make-inspiring-quote-voice/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/make-inspiring-quote-voice/README.ko.md -------------------------------------------------------------------------------- /examples/make-inspiring-quote-voice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/make-inspiring-quote-voice/README.md -------------------------------------------------------------------------------- /examples/make-inspiring-quote-voice/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/make-inspiring-quote-voice/README.zh-cn.md -------------------------------------------------------------------------------- /examples/make-inspiring-quote-voice/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/make-inspiring-quote-voice/model-compose.yml -------------------------------------------------------------------------------- /examples/mcp-servers/slack-bot/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/mcp-servers/slack-bot/.env.sample -------------------------------------------------------------------------------- /examples/mcp-servers/slack-bot/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/mcp-servers/slack-bot/README.ko.md -------------------------------------------------------------------------------- /examples/mcp-servers/slack-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/mcp-servers/slack-bot/README.md -------------------------------------------------------------------------------- /examples/mcp-servers/slack-bot/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/mcp-servers/slack-bot/README.zh-cn.md -------------------------------------------------------------------------------- /examples/mcp-servers/slack-bot/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/mcp-servers/slack-bot/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/chat-completion/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/chat-completion/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/chat-completion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/chat-completion/README.md -------------------------------------------------------------------------------- /examples/model-tasks/chat-completion/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/chat-completion/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/chat-completion/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/chat-completion/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/face-embedding/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/face-embedding/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/face-embedding/models/put-models-here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/model-tasks/image-to-text/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-to-text/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/image-to-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-to-text/README.md -------------------------------------------------------------------------------- /examples/model-tasks/image-to-text/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-to-text/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/image-to-text/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-to-text/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/image-upscale/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-upscale/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/image-upscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-upscale/README.md -------------------------------------------------------------------------------- /examples/model-tasks/image-upscale/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-upscale/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/image-upscale/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/image-upscale/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/summarization-stream/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization-stream/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization-stream/README.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization-stream/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization-stream/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization-stream/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization-stream/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/summarization/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization/README.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/summarization/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/summarization/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/text-classification/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-classification/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/text-classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-classification/README.md -------------------------------------------------------------------------------- /examples/model-tasks/text-classification/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-classification/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/text-classification/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-classification/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/text-embedding/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-embedding/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/text-embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-embedding/README.md -------------------------------------------------------------------------------- /examples/model-tasks/text-embedding/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-embedding/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/text-embedding/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-embedding/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/text-generation-lora/.env.sample: -------------------------------------------------------------------------------- 1 | HUGGINGFACE_TOKEN=put-your-token-here 2 | -------------------------------------------------------------------------------- /examples/model-tasks/text-generation-lora/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation-lora/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation-lora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation-lora/README.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation-lora/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation-lora/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation-lora/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation-lora/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/text-generation/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation/README.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/text-generation/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/text-generation/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/translation-stream/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation-stream/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/translation-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation-stream/README.md -------------------------------------------------------------------------------- /examples/model-tasks/translation-stream/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation-stream/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/translation-stream/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation-stream/model-compose.yml -------------------------------------------------------------------------------- /examples/model-tasks/translation/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation/README.ko.md -------------------------------------------------------------------------------- /examples/model-tasks/translation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation/README.md -------------------------------------------------------------------------------- /examples/model-tasks/translation/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation/README.zh-cn.md -------------------------------------------------------------------------------- /examples/model-tasks/translation/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/model-tasks/translation/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/elevenlabs/elevenlabs-text-to-speech/.env.sample: -------------------------------------------------------------------------------- 1 | ELEVENLABS_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/elevenlabs/elevenlabs-text-to-speech/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/elevenlabs/elevenlabs-text-to-speech/README.ko.md -------------------------------------------------------------------------------- /examples/providers/elevenlabs/elevenlabs-text-to-speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/elevenlabs/elevenlabs-text-to-speech/README.md -------------------------------------------------------------------------------- /examples/providers/elevenlabs/elevenlabs-text-to-speech/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/elevenlabs/elevenlabs-text-to-speech/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/elevenlabs/elevenlabs-text-to-speech/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/elevenlabs/elevenlabs-text-to-speech/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/google/google-cloud-vision/.env.example: -------------------------------------------------------------------------------- 1 | GOOGLE_CLOUD_API_KEY=your-google-cloud-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/google/google-cloud-vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/google/google-cloud-vision/README.md -------------------------------------------------------------------------------- /examples/providers/google/google-cloud-vision/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/google/google-cloud-vision/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/google/google-cloud-vision/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/google/google-cloud-vision/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-speech/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-speech/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-speech/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-speech/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-speech/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-speech/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-speech/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-speech/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-transciptions/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-transciptions/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-transciptions/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-transciptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-transciptions/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-transciptions/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-transciptions/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-audio-transciptions/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-audio-transciptions/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions-stream/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions-stream/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions-stream/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions-stream/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions-stream/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions-stream/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions-stream/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions-stream/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-chat-completions/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-chat-completions/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-edits/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-edits/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-edits/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-edits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-edits/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-edits/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-edits/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-edits/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-edits/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-generations/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-generations/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-generations/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-generations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-generations/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-generations/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-generations/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-generations/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-generations/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-variations/.env.sample: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-variations/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-variations/README.ko.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-variations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-variations/README.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-variations/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-variations/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/openai/openai-image-variations/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/openai/openai-image-variations/model-compose.yml -------------------------------------------------------------------------------- /examples/providers/xai/xai-chat-completion/.env.sample: -------------------------------------------------------------------------------- 1 | XAI_API_KEY=put-your-api-key-here 2 | -------------------------------------------------------------------------------- /examples/providers/xai/xai-chat-completion/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/xai/xai-chat-completion/README.ko.md -------------------------------------------------------------------------------- /examples/providers/xai/xai-chat-completion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/xai/xai-chat-completion/README.md -------------------------------------------------------------------------------- /examples/providers/xai/xai-chat-completion/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/xai/xai-chat-completion/README.zh-cn.md -------------------------------------------------------------------------------- /examples/providers/xai/xai-chat-completion/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/providers/xai/xai-chat-completion/model-compose.yml -------------------------------------------------------------------------------- /examples/split-text/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/split-text/README.ko.md -------------------------------------------------------------------------------- /examples/split-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/split-text/README.md -------------------------------------------------------------------------------- /examples/split-text/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/split-text/README.zh-cn.md -------------------------------------------------------------------------------- /examples/split-text/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/split-text/model-compose.yml -------------------------------------------------------------------------------- /examples/vector-store/chroma/.gitignore: -------------------------------------------------------------------------------- 1 | chroma 2 | -------------------------------------------------------------------------------- /examples/vector-store/chroma/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/chroma/README.ko.md -------------------------------------------------------------------------------- /examples/vector-store/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/chroma/README.md -------------------------------------------------------------------------------- /examples/vector-store/chroma/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/chroma/README.zh-cn.md -------------------------------------------------------------------------------- /examples/vector-store/chroma/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/chroma/model-compose.yml -------------------------------------------------------------------------------- /examples/vector-store/milvus/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/milvus/README.ko.md -------------------------------------------------------------------------------- /examples/vector-store/milvus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/milvus/README.md -------------------------------------------------------------------------------- /examples/vector-store/milvus/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/milvus/README.zh-cn.md -------------------------------------------------------------------------------- /examples/vector-store/milvus/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vector-store/milvus/model-compose.yml -------------------------------------------------------------------------------- /examples/vllm-chat-completion-stream/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vllm-chat-completion-stream/README.ko.md -------------------------------------------------------------------------------- /examples/vllm-chat-completion-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vllm-chat-completion-stream/README.md -------------------------------------------------------------------------------- /examples/vllm-chat-completion-stream/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vllm-chat-completion-stream/README.zh-cn.md -------------------------------------------------------------------------------- /examples/vllm-chat-completion-stream/model-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/examples/vllm-chat-completion-stream/model-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mindor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/cli/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/cli/compose.py -------------------------------------------------------------------------------- /src/mindor/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/core/component/__init__.py: -------------------------------------------------------------------------------- 1 | from .component import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/base.py -------------------------------------------------------------------------------- /src/mindor/core/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/component.py -------------------------------------------------------------------------------- /src/mindor/core/component/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/context.py -------------------------------------------------------------------------------- /src/mindor/core/component/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/runtime/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/runtime/process_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/runtime/process_manager.py -------------------------------------------------------------------------------- /src/mindor/core/component/runtime/process_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/runtime/process_worker.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | from .datasets import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/datasets.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/providers/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/providers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/providers/common.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/providers/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/providers/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/providers/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/providers/local.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/datasets/utils.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/http_client.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/http_server.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/image_processor.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/mcp_client.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/mcp_server.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/base/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/base/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/base/common.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/base/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/base/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/base/huggingface_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/base/huggingface_hub.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/base/unsloth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/base/unsloth.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/model.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/chat_completion/__init__.py: -------------------------------------------------------------------------------- 1 | from .huggingface import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/chat_completion/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/chat_completion/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/face_embedding/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/face_embedding/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/face_embedding/common.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/face_embedding/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/face_embedding/custom.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/face_embedding/insightface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/face_embedding/insightface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_generation/common.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_generation/custom.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_generation/flux.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/hunyuan_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_generation/hunyuan_image.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_generation/sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_generation/sdxl.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_to_text/__init__.py: -------------------------------------------------------------------------------- 1 | from .huggingface import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_to_text/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_to_text/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/common.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/custom.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/esrgan.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/ldsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/ldsr.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/real_esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/real_esrgan.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/image_upscale/swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/image_upscale/swinir.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_classification/__init__.py: -------------------------------------------------------------------------------- 1 | from .huggingface import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_classification/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/text_classification/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_embedding/__init__.py: -------------------------------------------------------------------------------- 1 | from .huggingface import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_embedding/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/text_embedding/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from .huggingface import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/model/tasks/text_generation/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/model/tasks/text_generation/huggingface.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/shell.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/text_splitter.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/__init__.py: -------------------------------------------------------------------------------- 1 | from .vector_store import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/vector_store/base.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/vector_store/drivers/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/drivers/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/vector_store/drivers/chroma.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/drivers/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/vector_store/drivers/milvus.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/vector_store/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/vector_store/vector_store.py -------------------------------------------------------------------------------- /src/mindor/core/component/services/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/component/services/workflow.py -------------------------------------------------------------------------------- /src/mindor/core/compose/__init__.py: -------------------------------------------------------------------------------- 1 | from .compose import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/compose/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/compose/compose.py -------------------------------------------------------------------------------- /src/mindor/core/compose/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/compose/manager.py -------------------------------------------------------------------------------- /src/mindor/core/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/controller/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/base.py -------------------------------------------------------------------------------- /src/mindor/core/controller/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/controller.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runner/__init__.py: -------------------------------------------------------------------------------- 1 | from .runner import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/controller/runner/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runner/client.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runner/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runner/http_client.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runner/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runner/mcp_client.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runner/runner.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/docker/__init__.py: -------------------------------------------------------------------------------- 1 | from .docker import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/docker/context/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runtime/docker/context/Dockerfile -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/docker/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runtime/docker/docker.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/native/__init__.py: -------------------------------------------------------------------------------- 1 | from .native import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/native/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runtime/native/native.py -------------------------------------------------------------------------------- /src/mindor/core/controller/runtime/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/runtime/specs.py -------------------------------------------------------------------------------- /src/mindor/core/controller/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/services/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/controller/services/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/services/http_server.py -------------------------------------------------------------------------------- /src/mindor/core/controller/services/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/services/mcp_server.py -------------------------------------------------------------------------------- /src/mindor/core/controller/webui/__init__.py: -------------------------------------------------------------------------------- 1 | from .webui import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/controller/webui/gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/webui/gradio.py -------------------------------------------------------------------------------- /src/mindor/core/controller/webui/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/controller/webui/webui.py -------------------------------------------------------------------------------- /src/mindor/core/foundation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/foundation/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/foundation/async_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/foundation/async_service.py -------------------------------------------------------------------------------- /src/mindor/core/foundation/ipc_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/foundation/ipc_messages.py -------------------------------------------------------------------------------- /src/mindor/core/foundation/process_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/foundation/process_manager.py -------------------------------------------------------------------------------- /src/mindor/core/foundation/process_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/foundation/process_worker.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/__init__.py: -------------------------------------------------------------------------------- 1 | from .gateway import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/gateway/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/base.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/gateway.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/__init__.py: -------------------------------------------------------------------------------- 1 | from .http_tunnel import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/http_tunnel/base.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/http_tunnel/drivers/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/drivers/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/http_tunnel/drivers/cloudflare.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/drivers/ngrok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/http_tunnel/drivers/ngrok.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/http_tunnel/http_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/http_tunnel/http_tunnel.py -------------------------------------------------------------------------------- /src/mindor/core/gateway/services/ssh_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/gateway/services/ssh_tunnel.py -------------------------------------------------------------------------------- /src/mindor/core/listener/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/listener/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/base.py -------------------------------------------------------------------------------- /src/mindor/core/listener/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/listener.py -------------------------------------------------------------------------------- /src/mindor/core/listener/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/services/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/listener/services/http_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/services/http_callback.py -------------------------------------------------------------------------------- /src/mindor/core/listener/services/http_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/listener/services/http_trigger.py -------------------------------------------------------------------------------- /src/mindor/core/logger/__init__.py: -------------------------------------------------------------------------------- 1 | from .logger import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/logger/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/base.py -------------------------------------------------------------------------------- /src/mindor/core/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/logger.py -------------------------------------------------------------------------------- /src/mindor/core/logger/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/logging.py -------------------------------------------------------------------------------- /src/mindor/core/logger/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/services/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/logger/services/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/services/console.py -------------------------------------------------------------------------------- /src/mindor/core/logger/services/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/logger/services/file.py -------------------------------------------------------------------------------- /src/mindor/core/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/core/runtime/docker/__init__.py: -------------------------------------------------------------------------------- 1 | from .docker import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/runtime/docker/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/runtime/docker/docker.py -------------------------------------------------------------------------------- /src/mindor/core/runtime/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/runtime/env.py -------------------------------------------------------------------------------- /src/mindor/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/core/utils/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/caching.py -------------------------------------------------------------------------------- /src/mindor/core/utils/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/http_client.py -------------------------------------------------------------------------------- /src/mindor/core/utils/http_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/http_request.py -------------------------------------------------------------------------------- /src/mindor/core/utils/http_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/http_response.py -------------------------------------------------------------------------------- /src/mindor/core/utils/http_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/http_status.py -------------------------------------------------------------------------------- /src/mindor/core/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/image.py -------------------------------------------------------------------------------- /src/mindor/core/utils/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/mcp_client.py -------------------------------------------------------------------------------- /src/mindor/core/utils/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/package.py -------------------------------------------------------------------------------- /src/mindor/core/utils/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/renderers.py -------------------------------------------------------------------------------- /src/mindor/core/utils/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/resolvers.py -------------------------------------------------------------------------------- /src/mindor/core/utils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/shell.py -------------------------------------------------------------------------------- /src/mindor/core/utils/ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/ssh_client.py -------------------------------------------------------------------------------- /src/mindor/core/utils/streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/streamer.py -------------------------------------------------------------------------------- /src/mindor/core/utils/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/streaming.py -------------------------------------------------------------------------------- /src/mindor/core/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/time.py -------------------------------------------------------------------------------- /src/mindor/core/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/url.py -------------------------------------------------------------------------------- /src/mindor/core/utils/websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/websocket_client.py -------------------------------------------------------------------------------- /src/mindor/core/utils/work_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/utils/work_queue.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | from .workflow import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/workflow/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/context.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/__init__.py: -------------------------------------------------------------------------------- 1 | from .job import * 2 | -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/base.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/action.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/delay.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/filter.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/if_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/if_.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/random_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/random_router.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/impl/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/impl/switch.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/job/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/job/job.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/schema.py -------------------------------------------------------------------------------- /src/mindor/core/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/core/workflow/workflow.py -------------------------------------------------------------------------------- /src/mindor/dsl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/dsl/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/loader.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/__init__.py: -------------------------------------------------------------------------------- 1 | from .action import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/action.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | from .datasets import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/datasets.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/providers/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/providers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/providers/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/providers/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/providers/huggingface.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/datasets/providers/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/datasets/providers/local.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/http_client.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/http_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/image_processor.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/mcp_client.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/mcp_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/chat_completion.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/__init__.py: -------------------------------------------------------------------------------- 1 | from .face_embedding import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/face_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/face_embedding.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/dlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/dlib.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/facenet.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/insightface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/face_embedding/impl/insightface.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from .image_generation import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/image_generation.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/flux.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/hunyuan_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/hunyuan_image.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_generation/impl/sdxl.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_to_text.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/__init__.py: -------------------------------------------------------------------------------- 1 | from .image_upscale import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/image_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/image_upscale.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/esrgan.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/ldsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/ldsr.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/real_esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/real_esrgan.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/image_upscale/impl/swinir.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/text_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/text_classification.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/text_embedding.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/impl/text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/impl/text_generation.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model/model.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/__init__.py: -------------------------------------------------------------------------------- 1 | from .model_trainer import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model_trainer/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/impl/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model_trainer/impl/classification.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model_trainer/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/impl/sft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model_trainer/impl/sft.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/model_trainer/model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/model_trainer/model_trainer.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/shell.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/text_splitter.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/__init__.py: -------------------------------------------------------------------------------- 1 | from .vector_store import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/chroma.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/faiss.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/milvus.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/impl/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/impl/qdrant.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/vector_store/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/vector_store/vector_store.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/action/impl/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/action/impl/workflow.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/__init__.py: -------------------------------------------------------------------------------- 1 | from .component import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/component.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | from .datasets import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/datasets/datasets.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/http_client.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/http_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/image_processor.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/mcp_client.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/mcp_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/chat_completion.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/__init__.py: -------------------------------------------------------------------------------- 1 | from .face_embedding import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/face_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/face_embedding.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/dlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/dlib.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/facenet.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/insightface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/face_embedding/impl/insightface.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/__init__.py: -------------------------------------------------------------------------------- 1 | from .image_generation import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/image_generation.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/flux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/flux.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/hunyuan_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/hunyuan_image.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_generation/impl/sdxl.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_to_text.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/__init__.py: -------------------------------------------------------------------------------- 1 | from .image_upscale import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/image_upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/image_upscale.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/esrgan.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/ldsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/ldsr.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/real_esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/real_esrgan.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/image_upscale/impl/swinir.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/text_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/text_classification.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/text_embedding.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/impl/text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/impl/text_generation.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model/model.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/__init__.py: -------------------------------------------------------------------------------- 1 | from .model_trainer import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model_trainer/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/impl/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model_trainer/impl/classification.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model_trainer/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/impl/sft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model_trainer/impl/sft.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/model_trainer/model_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/model_trainer/model_trainer.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/shell.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/text_splitter.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/__init__.py: -------------------------------------------------------------------------------- 1 | from .vector_store import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/chroma.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/faiss.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/milvus.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/impl/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/impl/qdrant.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/vector_store/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/vector_store/vector_store.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/component/impl/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/component/impl/workflow.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/compose.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/__init__.py: -------------------------------------------------------------------------------- 1 | from .controller import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/controller.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/impl/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/impl/http_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/impl/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/impl/mcp_server.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/__init__.py: -------------------------------------------------------------------------------- 1 | from .webui import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/impl/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/impl/dynamic.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/impl/gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/impl/gradio.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/impl/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/impl/static.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/controller/webui/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/controller/webui/webui.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/__init__.py: -------------------------------------------------------------------------------- 1 | from .gateway import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/gateway.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/__init__.py: -------------------------------------------------------------------------------- 1 | from .http_tunnel import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/http_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/http_tunnel/http_tunnel.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/cloudflare.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/ngrok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/http_tunnel/impl/ngrok.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/ssh_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/ssh_tunnel.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/gateway/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/gateway/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/__init__.py: -------------------------------------------------------------------------------- 1 | from .job import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/action.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/delay.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/filter.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/if_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/if_.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/random_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/random_router.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/switch.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/job/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/job/job.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/__init__.py: -------------------------------------------------------------------------------- 1 | from .listener import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/impl/http_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/impl/http_callback.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/impl/http_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/impl/http_trigger.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/listener/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/listener/listener.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/__init__.py: -------------------------------------------------------------------------------- 1 | from .logger import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/impl/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/impl/console.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/impl/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/impl/file.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/logger/logger.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | from .runtime import * 2 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/__init__.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/common.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/docker.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/embedded.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/native.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/process.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/impl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/impl/types.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/runtime/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/runtime/runtime.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/dsl/schema/transport/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/transport/http.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/transport/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/transport/ssh.py -------------------------------------------------------------------------------- /src/mindor/dsl/schema/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/schema/workflow.py -------------------------------------------------------------------------------- /src/mindor/dsl/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mindor/dsl/utils/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/utils/annotation.py -------------------------------------------------------------------------------- /src/mindor/dsl/utils/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/utils/enum.py -------------------------------------------------------------------------------- /src/mindor/dsl/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/src/mindor/dsl/utils/path.py -------------------------------------------------------------------------------- /tests/core/component/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | # Component runtime tests 2 | -------------------------------------------------------------------------------- /tests/core/component/runtime/test_component_process_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/core/component/runtime/test_component_process_runtime.py -------------------------------------------------------------------------------- /tests/core/runtime/test_docker_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/core/runtime/test_docker_manager.py -------------------------------------------------------------------------------- /tests/core/runtime/test_process_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/core/runtime/test_process_runtime.py -------------------------------------------------------------------------------- /tests/core/utils/test_ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/core/utils/test_ssh_client.py -------------------------------------------------------------------------------- /tests/dsl/gateway/test_ssh_tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/dsl/gateway/test_ssh_tunnel.py -------------------------------------------------------------------------------- /tests/dsl/runtime/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/dsl/runtime/test_docker.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyeol/model-compose/HEAD/tests/test_cli.py --------------------------------------------------------------------------------