├── README.md ├── compose.yaml ├── midori_ai_manager ├── config.py ├── huggingface_downloader.py ├── plans.txt ├── python_pip_installer.py ├── subsystem_manager_updater.py ├── subsystem_python_env_setup.py ├── subsystem_python_runner.py └── user.py ├── model_installer ├── README.MD ├── model_installer.bat ├── model_installer.sh └── shell_files │ ├── model_installer.bat │ └── model_installer.sh ├── model_list.txt ├── python_ver.py ├── subsystem-manager-uv ├── .python-version ├── README.md ├── carly_help.py ├── edit_models.py ├── midori_program_ver.txt ├── pyproject.toml ├── requirements.txt ├── setup_docker.py ├── setup_models.py ├── subsystem_manager.py ├── support.py ├── uv.lock ├── version.py └── yaml_edit.py ├── subsystem_docker_stuff ├── localai │ ├── localai-subsystem-dockerfile-cpu │ ├── localai-subsystem-dockerfile-gpu │ ├── localai-subsystem-dockerfile-hipblas-gpu │ ├── localai-subsystem-dockerfile-intelf16-gpu │ ├── localai-subsystem-dockerfile-intelf32-gpu │ ├── localai-subsystem-dockerfile-nvidia-gpu │ └── supporting_files │ │ └── localai_entrypoint.sh ├── midori-ai-pip-deb11-dockerfile ├── midori-ai-subsystem-manager-pixelarch-dockerfile └── ohmybash.sh └── upload_to_file_server.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/compose.yaml -------------------------------------------------------------------------------- /midori_ai_manager/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/config.py -------------------------------------------------------------------------------- /midori_ai_manager/huggingface_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/huggingface_downloader.py -------------------------------------------------------------------------------- /midori_ai_manager/plans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/plans.txt -------------------------------------------------------------------------------- /midori_ai_manager/python_pip_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/python_pip_installer.py -------------------------------------------------------------------------------- /midori_ai_manager/subsystem_manager_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/subsystem_manager_updater.py -------------------------------------------------------------------------------- /midori_ai_manager/subsystem_python_env_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/subsystem_python_env_setup.py -------------------------------------------------------------------------------- /midori_ai_manager/subsystem_python_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/subsystem_python_runner.py -------------------------------------------------------------------------------- /midori_ai_manager/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/midori_ai_manager/user.py -------------------------------------------------------------------------------- /model_installer/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_installer/README.MD -------------------------------------------------------------------------------- /model_installer/model_installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_installer/model_installer.bat -------------------------------------------------------------------------------- /model_installer/model_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_installer/model_installer.sh -------------------------------------------------------------------------------- /model_installer/shell_files/model_installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_installer/shell_files/model_installer.bat -------------------------------------------------------------------------------- /model_installer/shell_files/model_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_installer/shell_files/model_installer.sh -------------------------------------------------------------------------------- /model_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/model_list.txt -------------------------------------------------------------------------------- /python_ver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/python_ver.py -------------------------------------------------------------------------------- /subsystem-manager-uv/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /subsystem-manager-uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/README.md -------------------------------------------------------------------------------- /subsystem-manager-uv/carly_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/carly_help.py -------------------------------------------------------------------------------- /subsystem-manager-uv/edit_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/edit_models.py -------------------------------------------------------------------------------- /subsystem-manager-uv/midori_program_ver.txt: -------------------------------------------------------------------------------- 1 | `End of Days` -------------------------------------------------------------------------------- /subsystem-manager-uv/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/pyproject.toml -------------------------------------------------------------------------------- /subsystem-manager-uv/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/requirements.txt -------------------------------------------------------------------------------- /subsystem-manager-uv/setup_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/setup_docker.py -------------------------------------------------------------------------------- /subsystem-manager-uv/setup_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/setup_models.py -------------------------------------------------------------------------------- /subsystem-manager-uv/subsystem_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/subsystem_manager.py -------------------------------------------------------------------------------- /subsystem-manager-uv/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/support.py -------------------------------------------------------------------------------- /subsystem-manager-uv/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/uv.lock -------------------------------------------------------------------------------- /subsystem-manager-uv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/version.py -------------------------------------------------------------------------------- /subsystem-manager-uv/yaml_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem-manager-uv/yaml_edit.py -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-cpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-gpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-hipblas-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-hipblas-gpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-intelf16-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-intelf16-gpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-intelf32-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-intelf32-gpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/localai-subsystem-dockerfile-nvidia-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/localai-subsystem-dockerfile-nvidia-gpu -------------------------------------------------------------------------------- /subsystem_docker_stuff/localai/supporting_files/localai_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/localai/supporting_files/localai_entrypoint.sh -------------------------------------------------------------------------------- /subsystem_docker_stuff/midori-ai-pip-deb11-dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/midori-ai-pip-deb11-dockerfile -------------------------------------------------------------------------------- /subsystem_docker_stuff/midori-ai-subsystem-manager-pixelarch-dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/midori-ai-subsystem-manager-pixelarch-dockerfile -------------------------------------------------------------------------------- /subsystem_docker_stuff/ohmybash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/subsystem_docker_stuff/ohmybash.sh -------------------------------------------------------------------------------- /upload_to_file_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunamidori5/Midori-AI-Subsystem-Manager/HEAD/upload_to_file_server.bat --------------------------------------------------------------------------------